記事の最初の画像を表示

記事の最初の画像を表示
// 記事の最初の画像を表示
function get_first_image_url($post){
    // global $post;

    if ( preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches) ) {
        $first_img = $matches[1][0];
    } else {
    		$first_img = get_template_directory_uri() . '/images/contents/no-image.jpg';
    }

    return $first_img;
}