我已经正确设置了一个子主题,并在新函数中添加了样式表和脚本。php文件。唯一的问题是,当文件位于子主题文件夹中时,正在使用父主题引用我新排队的样式表。
设置子主题:
<?php
add_action( \'wp_enqueue_scripts\', \'enqueue_child_theme_styles\', PHP_INT_MAX);
function enqueue_child_theme_styles() {
wp_enqueue_style( \'parent-theme\', get_template_directory_uri().\'/style.css\' );
wp_enqueue_style( \'child-theme\', get_stylesheet_uri(), array(\'parent-theme\') );
}
?>
将新样式进一步添加到我孩子的函数中。php文件:
<?php
function new_scripts() {
wp_enqueue_style( \'grid\', get_template_directory_uri() . \'/css/grid.css\');
}
add_action( \'wp_enqueue_scripts\', \'new_scripts\' );
渲染时,在my中以这种方式显示:
<link media="all" type="text/css" href="/wp-content/themes/parent-theme/css/grid.css?ver=4.2.2" id="grid-css" rel="stylesheet">
我需要它来引用href=“/wp-content/themes/child-theme/css/grid.css?ver=4.2.2”
有什么建议吗?