- A+
所属分类:wordpress
WordPress如何将网站文章自动同步到新浪微博?相信大家对这个需求还是需要的。自动同步对博客的宣传还是有一定的好处的,朱曙明博客便在这里分享下WordPress自动同步到新浪的方法。
一、同步新浪微博代码
代码是来自张戈博客的,这里只是来分享下,将以下代码放入functions.php
中,代码如下:
- /**
- * WordPress发布文章同步到新浪微博
- */
- function post_to_sina_weibo($post_ID) {
- /* 鉴于很多朋友反馈发布文章空白,临时加上调试代码,若无问题可删除此行,若有问题请将错误信息在本文留言即可 */
- ini_set('display_errors', true);
- /* 此处修改为通过文章自定义栏目来判断是否同步 */
- 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='4071385439'; /* 此处是你的新浪微博appkey,不修改的话就会显示来自朱曙明博客哦! */
- $username='微博用户名';
- $userpassword='微博密码';
- $request = new WP_Http;
- /* 获取文章标签关键词 */
- $keywords = "";
- $tags = wp_get_post_tags($post_ID);
- foreach ($tags as $tag ) {
- $keywords = $keywords.'#'.$tag->name."#";
- }
- /* 修改了下风格,并添加文章关键词作为微博话题,提高与其他相关微博的关联率 */
- $string1 = '【文章发布】' . strip_tags( $get_post_title ).':';
- $string2 = $keywords.' 查看全文:'.get_permalink($post_ID);
- /* 微博字数控制,避免超标同步失败 */
- $wb_num = (138 - WeiboLength($string1.$string2))*2;
- $status = $string1.mb_strimwidth(strip_tags( apply_filters('the_content', $get_post_centent)),0, $wb_num,'...').$string2;
- $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,避免以后更新文章重复同步 */
- add_post_meta($post_ID, 'weibo_sync', 1, true);
- }
- }
- add_action('publish_post', 'post_to_sina_weibo', 0);
- /*
- //获取微博字符长度函数
- */
- function WeiboLength($str)
- {
- $arr = arr_split_zh($str); //先将字符串分割到数组中
- foreach ($arr as $v){
- $temp = ord($v); //转换为ASCII码
- if ($temp > 0 && $temp < 127) {
- $len = $len+0.5;
- }else{
- $len ++;
- }
- }
- return ceil($len); //加一取整
- }
- /*
- //拆分字符串函数,只支持 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个字节
- 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。地址:http://open.weibo.com/webmaster/add
如下图,在新浪接入网站,审核时间在1个工作日左右。
获取了App key之后,在代码里面填写App key和账号密码就可以了。
这样就大功告成了。
- 我的微信
- 这是我的微信扫一扫
-
- 我的微信公众号
- 我的微信公众号扫一扫
-