if( ( is_page() || is_single() ) && ( !is_home() && !is_front_page() ) ){
$content = strip_shortcodes( $original_content);
}
if its home or front page don\'t show gallery
if( is_home() || is_front_page() ) {
// don\'t show gallery
$content = strip_shortcodes( $original_content);
} else {
$content = get_the_image( array( \'size\' => \'full\' ) );
$content .= $original_content;
}
帖子使用短标签打印图库,
get_the_image()
打印缩略图。
因此,通过删除首页上的短标签,库将不再显示在首页上,而是显示在其他页面上,而且,categories, tags 等
要进一步改进,请添加|| is_archive()
符合上述条件。
参考is_home() 和strip_shortcodes()
只是为了好玩:
truth table:
0 0 1=(0 | | 0)(&&;(1和0)=0和&;1=0&;(0&;1)=00 0 0 0 0=10个