記事内の最初の画像を取り出す Ads X Bluesky Misskey はてブ 2012.04.25 Code <?php function catch_that_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $first_img = $matches [1] [0]; if(empty($first_img)){ $first_img = "/images/default.jpg"; } return $first_img; } ?> /*画像はindexやアーカイブのループに含める*/ <img src="<?php echo catch_that_image() ?>" /> Screen shot Note Description functions.phpに追記。記事にアップロードされた画像のうち、最初に表示されている画像のURLを取得する。無い場合はデフォルトとして設定した画像が表示される。 WordPress Ver. 3.3.1 Via –