我用这个功能在单篇文章的顶部显示特色图片,效果很好。但我需要它只适用于ID为31的“团队”类别。
我已经尝试了我能想到的所有可能的组合。当我使用条件时,无论如何都不会显示特征图像。
代码如下:
/* Code to Display Featured Image on top of the post */
add_action( \'genesis_before_entry\', \'featured_post_image\', 8 );
function featured_post_image() {
if ( ! is_singular( \'post\' ) ) return;
if ( is_category( 31 ) ) {
the_post_thumbnail( \'post-image\' );
}
}