admin管理员组文章数量:1297110
I'm trying to unqueue style.css file from a specific page.
In my functions.php (child theme) if I add:
add_action( 'wp_enqueue_scripts', 'apc_child_desregistra_estilos', 11 );
function apc_child_desregistra_estilos() {
wp_dequeue_style( 'main-styles' );
}
It works.
But when I add something like:
if (is_front_page()):
wp_dequeue_style( 'main-styles' );
endif;
It doesn't.
I really don't know what I am doing wrong.
本文标签: wp enqueue scriptUnqueue css file from specific page
版权声明:本文标题:wp enqueue script - Unqueue css file from specific page 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741616952a2388578.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论