2017-06-29 43 views
0

我无法专门检查博客模板页面(在Wordpress中调用循环的页面)。在这些设置中,我没有为主页和博客设置静态页面。我为主页提供了一个自定义模板。我希望能够检查博客模板,而不是博客单个帖子,主页或其他页面模板,因为我还有其他自定义事件正在进行。如何检查Wordpress中的博客模板

is_page_template() seems to affect other page templates. 
is_home() calls my homepage 
is_blog() calls my blog posts? 

非常感谢帮助!

回答

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; 

希望能解决它。

+0

举报此链接:https://wordpress.stackexchange.com/a/156624/121298 – Oluwaseye