如果发布类型等于,则显示X内容

时间:2012-01-15 作者:Rachel M

我只想说单曲。php如果post type=x,则显示y。否则,不显示它。

2 个回复
SO网友:mor7ifer

if( get_post_type() == \'post_type_slug\' ) {
    //do some stuff
} else {
    //do other stuff
}
应该这样做,或者您可以使用模板来处理,wordpress在默认情况下设置得非常好。看到了吗codex page on template hierarchy, 特别是我发现visual overview 非常有用。

SO网友:EliTheDawg

这就是你要找的吗?(其中“产品”将是岗位类型)

if ( is_singular(\'product\') ) {
    // do stuff
} else {
    // do something else
}

结束

相关推荐