根據wordpress文章ID判斷是否有相冊并調用,不廢話直接上代碼,在需要顯示的位置調用下面代碼即可。

$post_id = 88;
$has_gallery = ( count( get_post_galleries( $post_id, false ) ) > 0 );
if ( $has_gallery ) {
    echo "This post has a gallery.";
} else {
    echo "This post does not have a gallery.";
}