如何检查Wordpress中的博客模板

时间:2017-06-29 12:40:20

标签: wordpress templates

我无法专门检查博客模板页面(在Wordpress中调用循环的页面)。在设置中,我没有为主页和博客设置静态页面。我有一个为主页呈现的自定义模板。我希望能够检查博客模板,而不是博客单个帖子,主页或其他页面模板,因为我还有其他自定义内容。

is_page_template() seems to affect other page templates.
is_home() calls my homepage
is_blog() calls my blog posts? 
非常感谢帮助!

1 个答案:

答案 0 :(得分:0)

有趣......我认为你可以通过两种方式检查这个

//BLOG CHECK
if( (is_archive() || is_author() || is_category() || is_home() || is_tag()) && (get_post_type() === 'post')):
    //DO WHAT YOU WANT
endif;

OR

if(is_home() && !is_front_page()): // blog check
     ...
endif;

希望它为你解决。