記事で複数画像を持っているかどうかで条件分岐する Ads X Bluesky Misskey はてブ 2012.03.09 Code <?php $attachments = get_children( array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'post_parent' => $post->ID )); if(count($attachments) > 1) { ?> <!-- 画像が複数ある場合。スライダー使うとか --> <?php } else { ?> <!-- 画像が1つ以下の場合はこちらで処理 --> <?php } ?> Note Description 記事の中に画像が複数含まれているかで条件分岐する。ループ内で使用。 WordPress Ver. 3.3.1 Via wp-snippets