Hey wassup ?
Question :
I have some posts/feeds that have already been published using CyberSEO. I would like to do a batch update is it possible to make an updates? Such as tags,post footer info.,etc.
$post ['post_content'] = $post ['post_content'] . "<br />Copyright (c) 2011";
$post ['post_title'] = "MY POST: " . $post ['post_title'];
Cyber- looks like the videos are posting now from youtube. How can I make it so it just posts the video and nothing else from youtube?
// assign preferred width and height of youtube video
$width = 425;
$height = 355;
// make sure the feed has the <content> tag. If not, use <description>
if ($post ['post_content'] == '') {
$post ['post_content'] = $post ['post_excerpt'];
}
// extract youtube clip id
preg_match ( "/www.youtube.com\/watch\?v=(.*?)[&|\"]/s", $post ['post_content'], $matches );
$clip_id = $matches [1];
// create youtube player code and insert the extracted clip id there
$video = '<p><object width="' . $width . '" height="' . $height . '"><param name="movie" value="http://www.youtube.com/v/' . $clip_id . '">
</param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $clip_id .
'"type="application/x-shockwave-flash" wmode="transparent" width="' . $width . '" height="' . $height . '"></embed></object></p>';
// extract the clip description
preg_match ( "/<span>(.*?)<\/span>/s", $post ['post_content'], $matches );
$post ['post_content'] = "<p>" . $video . $matches [1] . "</p>\n";
$post ['post_content'] = "<p>" . $video . "</p>\n";
CyberSEO 5.15 has been released today.
Changes:
Added possibility to display custom fields as XML tags in the blog's RSS feed. To enable this function, simple add the following variable to your feed's URL:
custom_tags=custom_field_name1[,custom_field_name1,...]
For example, if your WordPress posts have views and thumb custom fields, you can display them as tags in the RSS feed using this URL:
yourblog.com/feed/?custom_tags=views,thumb
Make sure to update your copy!
It's look like there is a bug in the new "Remove links from images only" option. Gonna fix it within a few days.
What problem did the last code you give me fix?
The images or edit problem?
what does Cyberseo actually do? is it anyway simular to wprobot? does it only post rss feeds?
Why was OP banned? Just curious.