Does A Plugin Like This Exist?

richlondon18

Junior Member
Joined
Jan 8, 2009
Messages
142
Reaction score
29
Just wondered if any members know of a WP plugin that will take a new blog post and submit it to other wordpress blogs/wpmu blogs either a snippet of full automatically.

So basically like auto social poster but posts to other blogs instead of bookmarking sites.
 
well, this is something that can be easily coded :D

a plugin like, when a post is made, take the title and the post excerpt and body and automatically post it to the other blogs! VIOLA!!!
 
I have never come across a WP plugin like this however I am sure you could go to a freelance site like vworkers or something similar and have it coded up real cheap - it isn't something hard to do really.
 
Set up autoblog plugins on all other wordpress sites and make them repost stuff from your main blog's rss feed.
 
well, this is something that can be easily coded :D

a plugin like, when a post is made, take the title and the post excerpt and body and automatically post it to the other blogs! VIOLA!!!

Yes! Wickedguy can easy done this and it will be available when its ready, isn't it wickedguy ;)
 
why do you want to post it to other blog? can give more details example about it?
 
There is one already, is called stealthtrafficsystem plugin. It was posted here some where. It was released as a gift for the epic traffic system launch a while ago.
 
well, this is something that can be easily coded :D

a plugin like, when a post is made, take the title and the post excerpt and body and automatically post it to the other blogs! VIOLA!!!

no doubt wickedguy can do this type of stuff easily
 
Thanks guys and wickedguy if you do create a plugin like this let em know

The stealth traffic plugin is a little bit different it create links using makrov which means is basically unreadable and it trigger when visitors come to the site rather than when a new post is made.

It works but the results are very very spammy. The reason I want it is I have a big wpmu network and wanted a way of autoposting my backlinks to it rather than manually doing it with something like LFE
 
Just wondered if any members know of a WP plugin that will take a new blog post and submit it to other wordpress blogs/wpmu blogs either a snippet of full automatically.

So basically like auto social poster but posts to other blogs instead of bookmarking sites.

I'm a bit confused now. Do you wanna post your full posts to your other blogs or create backlinks from the other blogs to your posts? :confused:
 
Set up autoblog plugins on all other wordpress sites and make them repost stuff from your main blog's rss feed.
Use the RSS feed from a specific tag or specific category, that way you exclude all of your Site.com-branded news posts.
 
Wickedguy

It can be either the full post or a snippet of that post, which is then posted to multiple other blogs.

Like autosocialposter or slicksocial but instead of it posting to bookmarking sites it posts to wpmu sites that you have accounts on. And yes it is for backlinks
 
Wickedguy

It can be either the full post or a snippet of that post, which is then posted to multiple other blogs.

Like autosocialposter or slicksocial but instead of it posting to bookmarking sites it posts to wpmu sites that you have accounts on. And yes it is for backlinks

So, am I right if I say that the url of the post itself should also be posted along with the snippet?
 
Ok guys, here is something to play with. I did NOT test this, just giving you a head start, so please DO NOT blame me for ANYTHING!! :D

PHP:
<?php 

/*
Plugin Name: Post to WPMU
Plugin URI: http://blogbox.zar.tc
Description: Post all posts to WPMU network
Version: 1.0
Author: Godfrey Philander
Author URI: http://blogbox.zar.tc
*/


add_action('publish_post', 'postWPMU');



function wpPostXMLRPC($post_type,$title,$body,$rpcurl,$username,$password,$category,$keywords='',$encoding='UTF-8') {
if(trim($title)=='' || trim($body)==''){return;}
  $body=utf8_decode($body);$title=utf8_decode($title);
 
    $title = htmlentities($title,ENT_NOQUOTES,$encoding);
    $keywords = htmlentities($keywords,ENT_NOQUOTES,$encoding);
 

    $content = array(
        'title'=>$title,
        'description'=>$body,
        'mt_allow_comments'=>0,  // 1 to allow comments
        'mt_allow_pings'=>0,  // 1 to allow trackbacks
        'post_type'=>$post_type,
        'mt_keywords'=>$keywords,
        'categories'=>array($category));
        
    $params = array(0,$username,$password,$content,1);
    $request = xmlrpc_encode_request('metaWeblog.newPost',$params);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
    curl_setopt($ch, CURLOPT_URL, $rpcurl);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 10);
    $results = curl_exec($ch);
    curl_close($ch);
   
  $response = xmlrpc_decode(trim($results));

        
   if ($response && xmlrpc_is_fault($response)) {
   echo  $response[faultString] ($response[faultCode]);
    }
    
    
}

function postWPMU($post_ID){

    $post = get_post($post_ID);
    $permalink = get_permalink($post_ID);
      $tags = get_the_tags($post_ID);
    $title=$post->post_title;
    $excerpt=$post->post_excerpt;
    $categories = get_the_category($post_ID); 
      if (!empty($categories))
      foreach($categories as $category) 
        $all_categories .= $category->cat_name . ', ';
    
$blogs = file('wpmublogs.txt');
foreach($blogs as $blog){
wpPostXMLRPC('post',$title,$excerpt.'<br>Read More at '.$permalink,$blog."/xmlrpc.php",'username','password',$all_categories);
}  
    
    
}
      
 ?>
 
I'll start coding mine based your code wickedguy.

Thanks for the jump start.
Perhaps posting to blogspot too... :D
 
Hey guys don't take wickedguy away from his big project he's trying to complete, He has a December 1st deadline.:D

Drnick
 
Last edited:
Wickedguy I appreciate the start but not really sure what I do with it, i am a complete code idiot! Why don't you add it to your wonderful new autoblog script, I do this manually using lfe and get excellent results, just too time consuming
 
Back
Top