最新消息:

WordPress 文章、特色图、关键词同步到新浪微博

如果你想使用外链图片作为文章的特色图片,请参考 WordPress 文章外链特色图片 一文。如果你没有使用外链,请参考 WordPress 文章同步到新浪微博 一文。

注意:想使用同步图片功能,首先你要拥有高级权限,否则不经过任何修改直接使用本文代码你连基本的同步文章都无法实现。

如果你已经有类似代码请斟酌是覆盖还是修改,如果还没有实现类似功能,请将下列代码复制到 functions.php 中。

/*
 功能描述: WordPress 文章、特色图、关键词同步到新浪微博
 功能介绍页面: https://www.ivicos.com/87.html
*/
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='你的新浪微博 appkey';
 $username='你的微博登录用户名';
 $userpassword='你的微博登陆密码';
 $request = new WP_Http;
 $keywords = "";
 
 /* 获取文章标签关键词 */
 $tags = wp_get_post_tags($post_ID);
 foreach ($tags as $tag ) {
 $keywords = $keywords.' #'.$tag->name."# ";
 }
 
 /* 添加文章关键词作为微博话题,提高与其他相关微博的关联率 */
 $string1 = $keywords;
 $string2 = ' 查看全文:'.get_permalink($post_ID);
 
 /* 微博字数控制,避免超标同步失败 */
 $wb_num = (138 - WeiboLength($string1.$string2))*2;
 $status = mb_strimwidth(strip_tags( apply_filters('the_content', $get_post_centent)),0, $wb_num,'... ').$string1.$string2;
 
 /* 获取特色图片,如果没设置就抓取文章第一张图片 */
 $url = get_mypost_thumbnail($post_ID);
 
 /* 判断是否存在图片,定义不同的接口 */
 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'; /* 普通权限API接口地址 */
 $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); /* 加一取整 */
}

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;
}

if(!function_exists('get_mypost_thumbnail')){
 function get_mypost_thumbnail($post_ID){
 $values = get_post_custom_values("thumblink"); /* 获取外链特色图栏目名称 thumblink */
 if (has_post_thumbnail()) {
 $timthumb_src = wp_get_attachment_image_src( get_post_thumbnail_id($post_ID), 'full' );
 $url = $timthumb_src[0];
 } else {
 if(!$post_content){
 $post = get_post($post_ID);
 $post_content = $post->post_content;
 }
 preg_match_all('|<img.*?src=[\'"](.*?)[\'"].*?>|i', do_shortcode($post_content), $matches);
 if ($values) { /* 如果有 thumblink 栏目,返回里面的地址 */
 $url = $values[0];
 } else if( $matches && isset($matches[1]) && isset($matches[1][0]) ){
 $url = $matches[1][0];
 } else {
 $url = '';
 }
 }
 return $url;
 }
}

好了,WordPress 文章、特色图、关键词同步到新浪微博 就分享到这里,非常感谢你的来访。如果你喜欢本站,请不要忘记收藏本站,以便下次继续访问;也可以 关注站长微博 随时获取最新动态。你的支持就是我最大的动力!

转载请注明:爱维科斯 » WordPress 文章、特色图、关键词同步到新浪微博

支付宝打赏支付宝打赏 微信打赏微信打赏

如果文章对你有帮助,欢迎点击上方按钮打赏作者