Tôi đang cố tải chủ đề con của mình style.css
sau khi chủ đề gốc style.css
đã được tải. Tuy nhiên, tôi đã nhận thấy rằng style.css
không cần phải bị mê hoặc vì nó hoàn toàn bị mê hoặc bởi lõi WordPress.
Vì vậy, tôi rõ ràng mê hoặc nó như thế này, nơi nó phụ thuộc vào parent-style
việc đã được tải:
function enqueue_theme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri(). '/style.css', array('parent-style') );
}
add_action( 'wp_enqueue_scripts', 'enqueue_theme_styles', PHP_INT_MAX );
Vấn đề với điều này là giờ nó đã được tải hai lần . Một khi ngầm và sau đó rõ ràng. Làm thế nào tôi có thể tải con tôi style.css
sau khi cha mẹ mà không tải nó hai lần?
Đây là những gì head
trông giống như:
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
<?php if(isset($themeum['favicon'])){ ?>
<link rel="shortcut icon" href="<?php echo $themeum['favicon']; ?>" type="image/x-icon"/>
<?php }else{ ?>
<link rel="shortcut icon" href="<?php echo get_template_directory_uri().'/images/plus.png' ?>" type="image/x-icon"/>
<?php } ?>
<link rel="stylesheet" type="text/css" href="">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
<![endif]-->
<?php if(isset($themeum['before_head'])) echo $themeum['before_head'];?>
<?php wp_head(); ?>
</head>
style.css
.
Genesis
does)