我正在制作wordpress设计并使用wp_register_style和wp_enqueue_style函数包含它。 function.php中的代码如下:
function themeSetup (){
wp_register_style( 'prostyle', get_template_directory_uri() .'/common/prostyle.css', array(), null, 'all' );
wp_enqueue_style( 'prostyle' );
wp_register_style( 'style', get_stylesheet_uri(), array(), null, 'all' );
wp_enqueue_style( 'style' );
wp_register_script( 'JqueryCDN', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js', '', null, false );
wp_enqueue_script( 'JqueryCDN' );
wp_register_script( 'proscript', get_template_directory_uri() .'/common/proscript.js', '', null, false, false );
wp_enqueue_script( 'proscript' );
}
add_action('wp_enqueue_scripts', 'themeSetup');
主要问题:我之前写的css正在网站上工作,但是包含在同一文件中的每个新css规则都没有在浏览器上显示,也没有应用于元素。
Plz,请告诉我这些代码中缺少的内容。如果wp_register_script或样式函数中有任何错误请告诉我。
答案 0 :(得分:1)
第1步:在镀铬时始终使用私人窗口或隐身模式。
第2步:禁用缓存插件(如果有)。
步骤3:在您的样式中附加强制服务器使用较新版本的版本。
第4步:Cloud flare不会将您的css作为新版本。