I could use some coding help with my autoblog

markvd3

Newbie
Joined
Sep 29, 2011
Messages
4
Reaction score
0
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 and hot pictures" title=" ' . $img['title'] . ' - funny fail 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 autopost vidoes too?
 
this code grabing image and echo there you need to get video code and echo with embed code..
 
Yes, they are. Just saying :)
 
An example:

1) You have an RSS feed that contains video and image content (Is it youtube?)
2) You are trying to auto-populate that content into your single.php page?

Is that right?

Have you tried any of the free video auto-posters in the meantime?
 
I'm also interested in this code, I want to include Youtube videos from my feeds
 
im using feedwordpress for autoposting, but the thumnailns dont work... can we do something with the code, to make this work ?
 
Back
Top