您可以在wp\\u head挂接代码,将其添加到head中,或在wp\\u footer中添加到footer中,而不是在任何地方重复您的样式,看看它是否适合您,
function my_custom_style(){
global $post;
if ( !empty ( $post->post_name ) && $post->post_name == \'events\' ){ ?>
<style type="text/css">
#main { background-image: none; }
</style>
}
}
add_action ( \'wp_head\', \'my_custom_style\' );
或
add_action ( \'wp_footer\', \'my_custom_style\' );
我刚刚看到您的页面,如果您可以修改样式,请将以下内容添加到其中:
.events-gridview.events-archive #main {
background: none;
}
如果不能,则使用
function my_custom_style(){ ?>
<style type="text/css">
.events-gridview.events-archive #main {
background: none;
}
</style> <?php
}
}
add_action ( \'wp_head\', \'my_custom_style\' );
这将不会产生冲突。