WordPressにRSSを取得するfetch_feedという関数があるので、これを使う。 こんな感じ <?php include_once(ABSPATH . WPINC . '/feed.php'); $rss_url = array( 'RSS_url' ); $rss = fetch_feed($rss_url); if (!is_wp_error($rss)){ $maxitems = $rss->get_item_quantity(5); $rss_items = $rss->get_items(0, $maxitems); } foreach($rss_items as $key => $value){ $first_img = ''; if ( preg_match( '/<img.+?src=[\'"]([^\'"]+?)[\'"].*?>/msi', $value->g