admin管理员组文章数量:1289857
I have below snippet but it doesn't match what I want exactly.It avoids load any css file for my theme but also I want load stylepure.css. The stylepure css doesn't contain unused css so I want to load only it for my homepage. How can I except the css file? thanks
function pm_remove_all_styles() {
global $wp_styles;
$wp_styles->queue = array();
wp_register_script('hekimscripts_input', get_template_directory_uri() . '/js/stylespure.css', array(), '2.7.1'); // input css
wp_enqueue_script('hekimscripts_input'); // Enqueue it!
}
add_action('wp_print_styles', 'pm_remove_all_styles', 100);
I have below snippet but it doesn't match what I want exactly.It avoids load any css file for my theme but also I want load stylepure.css. The stylepure css doesn't contain unused css so I want to load only it for my homepage. How can I except the css file? thanks
function pm_remove_all_styles() {
global $wp_styles;
$wp_styles->queue = array();
wp_register_script('hekimscripts_input', get_template_directory_uri() . '/js/stylespure.css', array(), '2.7.1'); // input css
wp_enqueue_script('hekimscripts_input'); // Enqueue it!
}
add_action('wp_print_styles', 'pm_remove_all_styles', 100);
Share
Improve this question
asked Jul 13, 2021 at 10:11
Ahmet TaşAhmet Taş
31 bronze badge
1 Answer
Reset to default 0If this code works as excpected and you want to only limit it to front page you need to add a check for front page, like this
function pm_remove_all_styles() {
if (!is_front_page()) return; // add this
global $wp_styles;
$wp_styles->queue = array();
wp_register_script('hekimscripts_input', get_template_directory_uri() . '/js/stylespure.css', array(), '2.7.1'); // input css
wp_enqueue_script('hekimscripts_input'); // Enqueue it!
}
add_action('wp_print_styles', 'pm_remove_all_styles', 100);
本文标签: phpexcep tonly one cssdon39t load any css
版权声明:本文标题:php - excep tonly one css, don't load any css 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741444972a2379142.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论