jade19 Posted November 29, 2011 Share Posted November 29, 2011 Hello, first time posting Basically I run a WordPress blog which grabs RSS feeds from my other blogs containing Images, Text and Videos I use this code: <?php $i = 0; $page = get_the_content(); $doc=new DOMDocument(); $doc->loadHTML($page); $xml=simplexml_import_dom($doc); $images=$xml->xpath('//img'); foreach ($images as $img) { list($width, $height, $type, $attr) = getimagesize($img['src']); if ($height > 149 ) { echo '<img src="' . $img['src'] . '" alt=" ' . $img['alt'] . ' - funny pictures" title=" ' . $img['title'] . ' - funny picture dump" onerror=\'this.style.display="none" \'><br>'; $i++; if ($i == 3 ) { break;} } else { // don't display } } ?> To replace the "<?php the_content(); ?> peice of code in my index and single.php files. what it does is get only images from my rss feeds and remove all of the text. what I want it do do is allow it to post youtube videos also since almost all of my feeds use both images and videos. when my feed autoposts a video the php gets broken and my wordpress theme gets all weird looking. can someone help me let my feeds post vidoes too? Link to comment https://forums.phpfreaks.com/topic/252017-simple-grabing-image-code/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.