wordpress引流教程,发布文章后自动同步图文到新浪微博

2015-04-03 wordpress教程
  • 文章介绍
  • 快速入门
  • 评价&建议

经常上新浪微博并且关注了不少官网认证号的小伙伴一定会发现很多官方性质的微博都会把网站的最新文章或者动态同步到新浪微博这样一来就可以让微博用户快速 的了解到网站的最新动态,并且也为网站增加了一个曝光以及流量入口,对于更新频繁的网站来说增加一个同步网站动态到微博的功能是非常有必要的,也不扯淡 了,直接上代码:

  1. class sync_sina {
  2.     public $access_token = "";//access_token
  3.     public $default_image = "";//默认图片地址
  4.     public $host = "https://api.weibo.com/2/";
  5.     public static $boundary = '';
  6.     function __construct(){
  7.         /**
  8.          ** 事件绑定
  9.          **/
  10.         add_action('publish_post', array($this, 'new_post_photo'));
  11.     }
  12.     function do_mu_post($url$data) {
  13.         $ch = curl_init ();
  14.         $headers = array("Content-Type:multipart/form-data;boundary=". self::$boundary);
  15.         $ch = curl_init();
  16.         curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  17.         curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, TRUE );
  18.         curl_setopt ( $ch, CURLOPT_POST, TRUE );
  19.         curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
  20.         curl_setopt ( $ch, CURLOPT_URL, $url );
  21.         curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  22.         $ret = curl_exec ( $ch );
  23.         curl_close ( $ch );
  24.         return $ret;
  25.     }
  26.     function build_http_query_multi($params) {
  27.         if (!$paramsreturn '';
  28.         uksort($params, 'strcmp');
  29.         $pairs = array();
  30.         self::$boundary = $boundary = uniqid('------------------');
  31.         $MPboundary = '--'.$boundary;
  32.         $endMPboundary = $MPboundary. '--';
  33.         $multipartbody = '';
  34.         foreach ($params as $parameter => $value) {
  35.             if( in_array($parameterarray('pic', 'image')) && $value{0} == '@' ) {
  36.                 $url = ltrim( $value, '@' );
  37.                 $content = file_get_contents$url );
  38.                 $array = explode( '?', basename$url ) );
  39.                 $filename = $array[0];
  40.                 $multipartbody .= $MPboundary . "rn";
  41.                 $multipartbody .= 'Content-Disposition: form-data; name="' . $parameter . '"; filename="' . $filename . '"'. "rn";
  42.                 $multipartbody .= "Content-Type: image/unknownrnrn";
  43.                 $multipartbody .= $content"rn";
  44.             } else {
  45.                 $multipartbody .= $MPboundary . "rn";
  46.                 $multipartbody .= 'content-disposition: form-data; name="' . $parameter . ""rnrn";
  47.                 $multipartbody .= $value."rn";
  48.             }
  49.         }
  50.         $multipartbody .= $endMPboundary;
  51.         return $multipartbody;
  52.     }
  53.     function get_image($post_id){
  54.         if( has_post_thumbnail($post_id) ){
  55.             $timthumb_src = wp_get_attachment_image_src(get_post_thumbnail_id($post_id),'full');
  56.             $output = $timthumb_src[0];
  57.         } else {
  58.             $content = get_post_field('post_content', $post_id);
  59.             $defaltthubmnail = $this->default_image;
  60.             preg_match_all('/<img.*?(?: |\t|\r|\n)?src=['"]?(.+?)['"]?(?:(?: |\t|\r|\n)+.*?)?>/sim', $content$strResult, PREG_PATTERN_ORDER);
  61.             $n = count($strResult[1]);
  62.             if($n > 0){
  63.                 $output = $strResult[1][0];
  64.             } else {
  65.                 $output = $defaltthubmnail;
  66.             }
  67.         }
  68.         return $output;
  69.     }
  70.     function new_post_photo($post) {
  71.         global $post;
  72.         if$post->post_status != "publish" ){
  73.             $token = $this->access_token;
  74.             $url = $this->host ."statuses/upload.json";
  75.             $status = "我刚刚发布了新文章《".get_the_title()."》。".get_permalink();
  76.             $status .= mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0,180,"..."); //顺手加了个文章摘要,不喜欢就去掉啦
  77.             $pic_path = self::get_image($post->ID);
  78.             $params = array();
  79.             $params['access_token'] = $token;
  80.             $params['status'] = $status;
  81.             $params['pic'] = '@'.$pic_path;
  82.             $body = self::build_http_query_multi($params);
  83.             $result = self::do_mu_post($url,$body);
  84.         }
  85.     }
  86. }
  87. $HMT = new sync_sina();

以上代码添加至主题functions.php文件即可。

注意:

需要服务器支持file_get_contents函数以及curl组件;

如果网站在国外服务器或者服务因特殊原因屏蔽了api.weibo.com域名,则可能造成发布文章卡死或者超时的问题。

如果网站未通过新浪审核微博小尾巴会显示为未审核应用。

文章参考:http://www.mywpku.com/wordpress-sync-sina-weibo.html

0 0

企业建站推荐正版商业主题,国内专业团队开发,完善售后,是您不二选择。

正版主题商店

主题猫WP建站,累计帮助1300+客户成功建站,为站长提供支持!

立刻开启你的建站之旅
QQ在线客服

服务热线

wordpress建站咨询