↧
Answer by PhamThang for How can I get url from image tag in feed with...
I found alternative solution for my problem. Instead of using fetch_feed, I used DOMDocument in PHP. This is my code <?php $rss = new DOMDocument(); $rss->load('http://techdaily.vn/feed/'); $feed...
View ArticleHow can I get url from image tag in feed with fetch_feed?
I used this piece of code in functions.php to add featured image in <image> tag in feed add_action('rss2_item', 'add_my_rss_node'); function add_my_rss_node() { global $post;...
View Article