enqueue_parent_style

时间:2016-02-02 作者:Ollie

我正在尝试更改我的@导入样式。“我的孩子”主题的css到wp\\u enqueue\\u样式。我在函数中添加了以下内容。php子主题,它返回一个500错误。我看着this 几乎是跟着它到了T。我还看了this 但是这个答案对我来说没有意义。我对这方面很陌生,所以我就是跳不起来。

    function child_styles() {
    wp_enqueue_style( \'parent-style\', get_template_directory_uri () .\'/style.css\' );
}
add_action( \'wp_enqueue_scripts\', \'child_styles\' );
这里的任何帮助都会很好,因为我宁愿以更快更好的方式将脚本排队。在激活它之前,我正在本地进行测试,所以我无法给出网站URL。

1 个回复
最合适的回答,由SO网友:Stephen 整理而成

我想如果你改变你的wp_enqueue_style 对于下面的一个,它将完美地工作。这是我自己做的functions.php 文件

function wpse_scripts() {
    // Theme Stylesheet
    wp_enqueue_style(\'style\', get_stylesheet_uri());
}
add_action(\'wp_enqueue_scripts\', \'wpse_scripts\');
虽然你可以用你的方式来做,但你只是添加了一个/ 在您的style.css 你不需要这样。通过添加/ 您的脚本正在查找名为style.css

function wpse_scripts() {
    // Theme Stylesheet
    wp_enqueue_style(\'style\', get_stylesheet_directory_uri() . \'style.css\');
}
add_action(\'wp_enqueue_scripts\', \'wpse_scripts\');
你这样做的方式

以下是更改functions.php 在您的孩子主题中。

Child Theme

相关推荐