欧美亚洲中文,在线国自产视频,欧洲一区在线观看视频,亚洲综合中文字幕在线观看

      1. <dfn id="rfwes"></dfn>
          <object id="rfwes"></object>
        1. 站長資訊網(wǎng)
          最全最豐富的資訊網(wǎng)站

          wordpress如何對(duì)接微博使文章同步

          wordpress如何對(duì)接微博使文章同步

          WordPress對(duì)接微博使WordPress文章同步到微博

          WordPress文章發(fā)布后無插件自動(dòng)同步到新浪微博詳細(xì)步驟:

          1、申請(qǐng)新浪微博APPKEY

          申請(qǐng)地址:http://open.weibo.com/

          我們需要有自己的新浪微博賬戶,然后登陸上面的地址,申請(qǐng)APPKEY。

          (1)申請(qǐng)網(wǎng)站接入

          wordpress如何對(duì)接微博使文章同步

          (2)按照下圖流程進(jìn)行操作:

          wordpress如何對(duì)接微博使文章同步

          (3)網(wǎng)站接入完成后,在我的應(yīng)用下面會(huì)看到自己剛接入的網(wǎng)站,這個(gè)時(shí)候我們需要記下如下圖位置處的App Key

          wordpress如何對(duì)接微博使文章同步

          2、修改wordpress代碼

          在當(dāng)前使用的主題根目錄下的functions.php中加入如下代碼:

          function post_to_sina_weibo($post_ID) {     /* 此處修改為通過文章自定義欄目來判斷是否同步 */    if(get_post_meta($post_ID,'weibo_sync',true) == 1) return;     $get_post_info = get_post($post_ID);    $get_post_centent = get_post($post_ID)->post_content;    $get_post_title = get_post($post_ID)->post_title;    if ($get_post_info->post_status == 'publish' && $_POST['original_post_status'] != 'publish') {        $appkey='上個(gè)步驟獲取的App key';          $username='用戶名';        $userpassword='密碼';        $request = new WP_Http;        $keywords = "";          /* 獲取文章標(biāo)簽關(guān)鍵詞 */        $tags = wp_get_post_tags($post_ID);        foreach ($tags as $tag ) {           $keywords = $keywords.'#'.$tag->name."#";        }        /* 修改了下風(fēng)格,并添加文章關(guān)鍵詞作為微博話題,提高與其他相關(guān)微博的關(guān)聯(lián)率 */      $string1 = '【文章發(fā)布】' . strip_tags( $get_post_title ).':';      $string2 = $keywords.' 查看全文:'.get_permalink($post_ID);       /* 微博字?jǐn)?shù)控制,避免超標(biāo)同步失敗 */      $wb_num = (138 - WeiboLength($string1.$string2))*2;      $status = $string1.mb_strimwidth(strip_tags( apply_filters('the_content', $get_post_centent)),0, $wb_num,'...').$string2;       		if ( has_post_thumbnail()) {    			$timthumb_src = wp_get_attachment_image_src( get_post_thumbnail_id($post_ID), 'full' );  			$url = $timthumb_src[0];  		} else { 			preg_match_all('/<img.*?(?: |\t|\r|\n)?src=['"]?(.+?)['"]?(?:(?: |\t|\r|\n)+.*?)?>/sim', $get_post_centent,	$strResult, PREG_PATTERN_ORDER);  //正則獲取文章中第一張圖片 			$n = count($strResult[1]);   			if($n > 0){ 				$url=$strResult[1][0];   			} 		} 	   /* 判斷是否存在圖片,定義不同的接口 */        if(!empty($url)){            $api_url = 'https://api.weibo.com/2/statuses/upload_url_text.json'; /* 新的API接口地址 */            $body = array('status' => $status,'source' => $appkey,'url' => $url);        } else {            $api_url = 'https://api.weibo.com/2/statuses/update.json';            $body = array('status' => $status,'source' => $appkey);        }        $headers = array('Authorization' => 'Basic ' . base64_encode("$username:$userpassword"));        $result = $request->post($api_url, array('body' => $body,'headers' => $headers));         /* 若同步成功,則給新增自定義欄目weibo_sync,避免以后更新文章重復(fù)同步 */        add_post_meta($post_ID, 'weibo_sync', 1, true);     } } add_action('publish_post', 'post_to_sina_weibo', 0);  /* //獲取微博字符長度函數(shù)  */ function WeiboLength($str) {     $arr = arr_split_zh($str);   //先將字符串分割到數(shù)組中     foreach ($arr as $v){         $temp = ord($v);        //轉(zhuǎn)換為ASCII碼         if ($temp > 0 && $temp < 127) {             $len = $len+0.5;         }else{             $len ++;         }     }     return ceil($len);        //加一取整 } /* //拆分字符串函數(shù),只支持 gb2312編碼   //參考:http://u-czh.iteye.com/blog/1565858 */ function arr_split_zh($tempaddtext){     $tempaddtext = iconv("UTF-8", "GBK//IGNORE", $tempaddtext);     $cind = 0;     $arr_cont=array();     for($i=0;$i<strlen($tempaddtext);$i++)     {         if(strlen(substr($tempaddtext,$cind,1)) > 0){             if(ord(substr($tempaddtext,$cind,1)) < 0xA1 ){ //如果為英文則取1個(gè)字節(jié)                 array_push($arr_cont,substr($tempaddtext,$cind,1));                 $cind++;             }else{                 array_push($arr_cont,substr($tempaddtext,$cind,2));                 $cind+=2;             }         }     }     foreach ($arr_cont as &$row)     {         $row=iconv("gb2312","UTF-8",$row);     }     return $arr_cont; }

          至此我們只要修改上述代碼中的三處,其中APP KEY直接修改成我們自己的APP KEY,然后輸入自己的微博賬戶和密碼。

          贊(0)
          分享到: 更多 (0)
          網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)