在wordpress中,我创建了一个子主题,并且某些模板根据子主题中style.css的设计进行了更改。
我还在子主题中创建了一个新模板,但我希望在子主题中没有添加的style.css只有一个模板在前端。我的模板文件名是template-custom.php
。
怎么做?
答案 0 :(得分:0)
您可以使用wp_dequeue_style功能删除特定模板上的css
尝试使用以下代码:
/**
* Remove specific style sheets.
*/
function some_remove_styles() {
if ( is_page_template( 'yourtemplate.php' ) ) {
wp_dequeue_style( 'some-style' );
wp_dequeue_style( 'some-other-style' );
}
}
add_action( 'wp_print_styles', 'some_remove_styles', 99 );