我最近将主题和内容从本地WordPress
移到了暂存环境,并且我的子主题中的CSS样式替代不再覆盖主题“父CSS” 。
http://xh3.afa.myftpupload.com/
它似乎正在前端加载,但无法正常工作。子主题处于活动状态并且正在运行,而我的functions.php
具有以下主题:
<?php
add_action( ‘wp_enqueue_scripts’, ‘enqueue_parent_styles’ );
function enqueue_parent_styles() {
wp_enqueue_style(
‘parent-style’,
get_template_directory_uri().’/style.css’
);
}
?>