您正在对样式使用相同的标识符。css和样式。最小css。为每一个使用不同的标识符。
更好的做法是:采用那种风格。css是样式的缩小版本。css,仅排队样式。最小css。
if (!function_exists(\'chld_thm_cfg_parent_css\')) {
function chld_thm_cfg_parent_css() {
wp_enqueue_style(\'chld_thm_cfg_parent\', get_template_directory_uri() . \'/style.min.css\');
}
}
add_action(\'wp_enqueue_scripts\', \'chld_thm_cfg_parent_css\');
最后,在更改样式的内容后,清除浏览器缓存。min.css文件。否则,浏览器可以使用存储在本地缓存中的旧版本。
为确保用户获得正确的文件,建议使用的version参数wp_enqueue_style
并在每次修改样式文件时更改版本号:
if (!function_exists(\'chld_thm_cfg_parent_css\')) {
function chld_thm_cfg_parent_css() {
//Fill with dependencies, if any
$dependencies = array();
//Change the version number after you change the content of the file
//To ensure that browsers download it again and discard the one stored on cache
$version = \'1.0\':
wp_enqueue_style(\'chld_thm_cfg_parent\', get_template_directory_uri() . \'/style.min.css\', $dependencies, $version );
}
}
add_action(\'wp_enqueue_scripts\', \'chld_thm_cfg_parent_css\');