我们在functions.php中为WordPress子主题设置了什么代码?

时间:2017-01-30 20:19:29

标签: php wordpress

我在official tutorial

中关注此示例
<?php
function my_theme_enqueue_styles() {

    $parent_style = 'parent-style';

    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 ),
        wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>

但他们有这条线

  

其中parent-style与父主题在注册样式表时使用的$ handle相同。

这甚至意味着什么?

我正在为Bazaar Lite创建一个子主题,目录名称为bazaar-lite

我该如何修改我的文件?

1 个答案:

答案 0 :(得分:1)

实际上,在文档中看起来有点像拼写错误。如果你看一下the doc page上面那个更简单的例子,他们会逐字地使用“父式”。你仍然可以使用“父式”没问题。

因此,为了回答您的问题,您应该能够使用您显示的代码,而无需任何修改。

希望这有帮助!