要做到这一点,我们需要回到get_post_format()
作为Codex page 说明:
$format = get_post_format();
if ( false === $format )
$format = \'standard\';
因此,为了检查帖子是否为标准格式,我可以使用以下快捷方式:
if ( false == get_post_format() ) {
// I\'m a standard format post
}
/* or */
if ( ! get_post_format() ) {
// I\'m a standard format post
}
或者颠倒方案,检查帖子是否
not 标准格式:
if ( false !== get_post_format() ) {
// I\'m everything but a standard format post
}
/* or */
if ( get_post_format() ) {
// I\'m everything but a standard format post
}