嗨,我想知道是否有人可以帮助我在索引Feed上检查帖子类型的正确语法,目前我正在尝试这个 -
<div class="<?php if(is_home() )
{<?php if ( 'movies' == get_post_type() ) { echo 'textbox';}?> ;}?>">
</div>
答案 0 :(得分:0)
不需要多个PHP开放标记。
<div class="<?php if (is_home() && (get_post_type() == 'movies')) { echo 'textbox';} ?>"> </div>
在这种情况下我可能会做的很清楚:
<?php
$class = (is_home() && get_post_type()==='movies') ? 'textbox' : '';
echo '<div class="', $class, '"></div>';
答案 1 :(得分:0)
if ( is_front_page() && is_home() ) {
// Default homepage
} elseif ( is_front_page()){
//Static homepage
} elseif ( is_home()){
//Blog page
} else {
//everything else
}
}