How to change header in Wordpress Blog page and all Post pages only. I want a custom header in Blog page and all single posts page.
Thanks
您可以在 Wordpress 中使用条件标签:
http://codex.wordpress.org/Conditional_Tags
基本上,您需要为博客和帖子页面创建您想要的内容,并将其包装在条件标签中:
PS不要忘记包括类别和存档页面 - 以及帖子页面。
is_single()、is_archive()、is_category()
<?php if (is_single()) { ?>
// This is a post page
<?php } else { ?>
//This is not a post page
<?php } ?>
希望这可以帮助。