我是Wordpress的新手。我通过子主题定制了一个带有Helix主题的页面: http://test.thres.com 在原版(Helix主题)中,过渡是平滑而美观的,但在我的版本中它们是闪烁的。页面是否可能加载两次,一次是原始主题,另一次是孩子的自定义?原始主题有2个css文件。我已经通过这个functions.php代码导入了两个主题,style.css和theme.css:
<?php
function wpse_load_parent_stylesheets() {
wp_enqueue_style( 'theme', get_template_directory_uri() . '/css/theme.css' );
}
add_action( 'wp_enqueue_scripts', 'wpse_load_parent_stylesheets' );
?>
知道出了什么问题?
感谢您的关注。 最好, Masreliez