在我的搜索档案视图中, 某些结果将是帖子, 而某些结果将是页面。我想在模板中为帖子和页面提供不同的视觉处理。
我试过使用if(is_post())和if(is_page())没有运气。我该怎么做?
#1
is_page()取决于请求如何映射到主要查询变量, 因此你可以改为在循环内检查帖子类型:
the_title();
$post_type = get_post_type();
if( 'post' === $post_type ) {
// it is post, and style it like the way you need
} elseif ( 'page' === $post_type ) {
// it is page
}
评论前必须登录!
注册