Heim  >  Artikel  >  Backend-Entwicklung  >  php向wordpress等支持xmlrpc的网站离线发帖的代码_PHP教程

php向wordpress等支持xmlrpc的网站离线发帖的代码_PHP教程

WBOY
WBOYOriginal
2016-07-20 11:12:40878Durchsuche

上周做了一个银魂的网站 
http://www.iyinhun.com 
喜欢吐槽的热血动画的粉丝可以看看。

因为一个人做,比较吃力,我就想做一个自动维护程序(其实就是采集器的意思)
下面公布一下php向这类网站发送文章的代码(php向wordpress,blogbus,cnblogs等支持xmlrpc的网站离线发帖的代码)
分类属性(categories,mt_keywords)自己改。
附件里是wordpress xmlrpc协议的类库

function send_to_other($web,$title,$con,$USER,$PASS,$count=-1)  { 
		$client = new IXR_Client($web);
        $content['title'] = $title;
        //$get_post_info->post_category;
        $content['categories'] = array("同人");
        $content['description'] = $con;
       // $content['custom_fields'] = array( array('key' => 'my_custom_fied','value'=>'yes') );
        $content['mt_keywords'] = '同人';
    
		  if (!$client->query('metaWeblog.newPost','', $USER,$PASS, $content, true)) 
		        {
		            die( 'Error while creating a new post' . $client->getErrorCode() ." : ". $client->getErrorMessage());  
		        }
		        $ID =  $client->getResponse();
		        
		        if($ID)
		        {
		           // echo 'Post published with ID:#'.$ID;
		        }    
		   return $post_ID;  
}  

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444555.htmlTechArticle上周做了一个银魂的网站 http://www.iyinhun.com 喜欢吐槽的热血动画的粉丝可以看看。 因为一个人做,比较吃力,我就想做一个自动维护程序(其实...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn