WordPress儿童主题造型并不总是有效

时间:2018-05-08 00:23:35

标签: css wordpress

我手动安装了我的WP子主题。样式表适用于大多数事情,但我会继续针对奇怪的事情运行,或者它会恢复到父主题样式表。现在特别是我无法调整我的页脚底部边距。

这里是我在子主题中的functions.php中的Enqueque:

while

知道为什么我的孩子主题是这样的吗?感谢

1 个答案:

答案 0 :(得分:1)

似乎您可能需要将子主题的style.css排入队列。这样做将父样式设置为子样式的依赖项,并确保它们以正确的顺序加载。 Read more here.

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