記事内の一番目にある画像をアイキャッチに

functions.phpに下記コードを追加

  1. function catch_that_image() {
  2.     global $post, $posts;
  3.     $first_img = '';
  4.     ob_start();
  5.     ob_end_clean();
  6.     $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
  7.     $first_img = $matches [1] [0];
  8.     if(empty($first_img)){
  9.         // 記事内で画像がなかったときのためのデフォルト画像を指定
  10.         $first_img = "/images/default.jpg";
  11.     }
  12.     return $first_img;
  13. }

目次