WordPress优化:查询百度收录,自动同步微博带图片等
wordpress的流行不是由wordpress程序本身决定的,而是由广大的wordpress开发者和爱好者推出来的。现在建站选择wordpress,最方便的就是可以在网上找到非常多的优秀的免费wordpress主题,还有各种用途的wordpress插件,几乎想要的功能就能用插件来代替。
对于wordpress的折腾户来说,没有强大的兴趣作支撑是很难日复一日地研究和推出新的wordpress优化技巧和方案,尤其是在国内作为一个wordpress开发者有时可能感觉很孤独和寂寞。本篇文章就是来自热爱wp的张戈博主自己在折腾wordpress过程中开发出来的wp实用技巧。
有的朋友可能想要在自己的wordpress的每篇文章上展示百度是否收录的情况。还有的为了提高网站人气,我们有必要将wordpress的读者制作一个漂亮的展示墙,在评论中显示访客ua信息。对于“要求高”的朋友,可能还想要让自己的wordpress的每篇文章的id是连续的。
如果你有以上几个需求,那么可以直接将本文分享的有关wordpress优化代码拿去用了。前一天部落分享了wordpress同步更新到新浪微博,这次我们带来了张戈博主改进优化版本:让wordpress发布文章自动同步到新浪微博,并带上特色图片。
wordpress优化:查询百度收录,自动同步微博带图片,年月日排名的读者墙一、查询并展示wordpress文章是否被收录1、可能有的人会比较喜欢查询自己博客上的每篇文章是否被百度收录,并将结果展示出来,类似的效果如下:
2、实现在上述效果可以直接使用wp-baidu-record插件,官网:
3、插件激活后,点击[设置]按钮进入插件设置界面,插件默认设置如下(默认是在文章内容的最后输出百度收录结果,而且是公开显示):
4、如果你想自定义输出位置,那么请勾选自定义结果输出位置,前往wordpress主题目录,找到文章模板(一般是single.php),然后在想要显示的位置添加如下函数即可:<?php echo baidu_record(); ?>
5、喜欢使用纯代码的话,编辑wordpress主题目录下的functions.php文件,在最后一个?>标签之前,添加如下代码并保存:
function baidu_check($url){
global $wpdb;
$post_id = ( null === $post_id ) ? get_the_id() : $post_id;
$baidu_record = get_post_meta($post_id,'baidu_record',true);
if( $baidu_record != 1){
$url=''.$url;
$curl=curl_init();
curl_setopt($curl,curlopt_url,$url);
curl_setopt($curl,curlopt_returntransfer,1);
$rs=curl_exec($curl);
curl_close($curl);
if(!strpos($rs,'没有找到')){
if( $baidu_record == 0){
update_post_meta($post_id, 'baidu_record', 1);
} else {
add_post_meta($post_id, 'baidu_record', 1, true);
}
return 1;
} else {
if( $baidu_record == false){
add_post_meta($post_id, 'baidu_record', 0, true);
}
return 0;
}
} else {
return 1;
}
}
function baidu_record() {
if(baidu_check(get_permalink()) == 1) {
echo '<a target="_blank" title="点击查看" rel="external nofollow" href="'.get_the_title().'">百度已收录</a>';
} else {
echo '<a style="color:red;" rel="external nofollow" title="点击提交,谢谢您!" target="_blank" href="'.get_permalink().'">百度未收录</a>';
}
}
6、然后编辑wordpress主题下的文章模板(一般是single.php),在想要显示收录结果的位置添加如下代码并保存:<?php echo baidu_record(); ?>。和上文插件的安装方法一致,可进一步参考操作。
7、代码说明如下:
1、通过curl在百度查询url收录结果,如果已收录就将结果写入到文章的post meta记录中。待下一次再次打开页面时,先检查文章自定义栏目字段来判断是否已收录,若已收录则直接输出,而不再执行curl查询。
2、若查询结果为已收录,亦会输出一个在百度查询文章标题的a标签,用于查看文章排名,甚至可以查看是否被人转载或篡改!
3、 管理员可以随时在后台文章编辑界面中的自定义栏目来修改是否已收录的结果,自定义名称为baidu_record,1为已收录,0为未收录。
二、 wordpress更新后自动同步文章到新浪微博1、wordpress更新文章后自动将文章同步更新到新浪微博上,部落在wordpress同步更新到新浪微博有分享过,不过我们还想在自动同步更新文章时顺便带上文章的特色图片,这样让我们的微博变得更有吸引力一些。
2、将之前的代码修改下就可以了,代码如下:
/*** wordpress发布文章同步到新浪微博(带图片&自定义栏目版)* 文章地址:*/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='1034947262'; /* 此处是你的新浪微博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; /* 获取特色图片,如果没设置就抓取文章第一张图片 */ if (has_post_thumbnail()) { $url = get_post_thumbnail_url($post->id); /* 抓取第一张图片作为特色图片,需要主题函数支持 */ } else if(function_exists('catch_first_image')) { $url = catch_first_image(); } /* 判断是否存在图片,定义不同的接口 */ if(!empty($url)){ $api_url = ''; /* 新的api接口地址 */ $body = array('status' => $status,'source' => $appkey,'url' => $url); } else { $api_url = ''; $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编码 //参考:*/function arr_split_zh($tempaddtext){ $tempaddtext = iconv("utf-8", "gbk//ignore", $tempaddtext); $cind = 0; $arr_cont=array(); for($i=0;$i<strlen($tempaddtext);$i++) style="padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; padding-right: 0px" 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;}
3、 如果你的主题没有抓取文章第一张图片作为特色图片的功能,请额外添加如下代码:
/* 抓取文章第一张图片作为特色图片(已加上是否已存在判断,可放心添加到functions.php) */
if(!function_exists('catch_first_image')):
function catch_first_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content,$matches);
$first_img = $matches [1] [0];
return $first_img;
}
}
4、 一切准备就绪了,但是发布文章肯定不会同步,为啥?因为没权限呗~!原来这个接口需要在原先的基础上额外申请,点击应用名称,然后,在接口管理==>申请权限==>申请微博高级写入权限:
5、有求于人,不管有多容易、门槛有多低,我们都要保持诚恳的态度:
6、一般情况,一个工作日之内就能通过了,通过之后,你在去发布文章,就能看到效果了,不但有特色图片,而且还显示【来自xx博客】。
三、wordpress酷炫css3读者墙:按年、月、日排名1、wordpress酷炫css3读者墙这个玩意一般不用我多说,大部分用wordpress的博主都了解过了,为了增强评论的积极性,我们可以热心读者按月份排行,甚至还可以一周为单位,进一步激励读者评论留言。
2、实现以上效果,可以直接使用以下代码(同时存在多个时间段):
<!-- 张戈博客修改版读者墙排行代码 -->
<style type="text/css">
.readers-list{line-height:18px;text-align:left;overflow:hidden;_zoom:1}
.readers-list li{width:200px;float:left;*margin-right:-1px}
.readers-list a,.readers-list a:hover strong{background-color:#f2f2f2;background-image:-webkit-linear-gradient(#f8f8f8,#f2f2f2);background-image:-moz-linear-gradient(#f8f8f8,#f2f2f2);background-image:linear-gradient(#f8f8f8,#f2f2f2)}
.readers-list a{position:relative;display:block;height:36px;margin:4px;padding:4px 4px 4px 44px;color:#999;overflow:hidden;border:#ccc 1px solid;border-radius:2px;box-shadow:#eee 0 0 2px}
.readers-list img,.readers-list em,.readers-list strong{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;transition:all .2s ease-out}
.readers-list img{width:36px;height:36px;float:left;margin:0 8px 0 -40px;border-radius:2px}
.readers-list em{color:#666;font-style:normal;margin-right:10px}
.readers-list strong{color:#ddd;width:40px;text-align:right;position:absolute;right:6px;top:4px;font:bold 14px/16px microsoft yahei}
.readers-list a:hover{border-color:#bbb;box-shadow:#ccc 0 0 2px;background-color:#fff;background-image:none}
.readers-list a:hover img{opacity:.6;margin-left:0}
.readers-list a:hover em{color:#ee8b17;font:bold 12px/36px microsoft yahei}
.readers-list a:hover strong{color:#ee8b17;right:150px;top:0;text-align:center;border-right:#ccc 1px solid;height:44px;line-height:40px}
</style>
<h2>年度评论排行 top3</h2>
<?php
$query1="select count(comment_id) as cnt, comment_author, comment_author_url, comment_author_email from (select * from $wpdb->comments left outer join $wpdb->posts on ($wpdb->posts.id=$wpdb->comments.comment_post_id) where comment_date between date_sub(now(),interval 1 year) and now() and user_id='0' and comment_author_email != '改成你的邮箱账号' and post_password='' and comment_approved='1' and comment_type='') as tempcmt group by comment_author_email order by cnt desc limit 3";
$wall = $wpdb->get_results($query1);
$maxnum = $wall[0]->cnt;
foreach ($wall as $comment)
{
$width = round(40 / ($maxnum / $comment->cnt),2);
//此处是对应的条的宽度
if( $comment->comment_author_url )
$url = $comment->comment_author_url;
else $url="#";
$avatar = get_avatar( $comment->comment_author_email, $size = '32', $default = get_bloginfo('wpurl').'/avatar/default.jpg' );
$tmp = "<li><a rel=\"friend\" alt=\"avatar头像\" target=\"_blank\" href=\"".$comment->comment_author_url."\">".$avatar."<em>".$comment->comment_author."</em> <strong>+".$comment->cnt."</strong></br>".$comment->comment_author_url."</a></li>";
$output1 .= $tmp;
}
$output1 = "<ul class=\"readers-list\">".$output1."</ul>";
echo $output1 ;
?>
<!-- end 年度排行 -->
<div class="clear"></div>
<br />
<h2>本月评论排行 top6</h2>
<?php
$query2="select count(comment_id) as cnt, comment_author, comment_author_url, comment_author_email from (select * from $wpdb->comments left outer join $wpdb->posts on ($wpdb->posts.id=$wpdb->comments.comment_post_id) where date_format(comment_date,'%y-%m')=date_format(now(),'%y-%m') and user_id='0' and comment_author_email != '改成你的邮箱账号' and post_password='' and comment_approved='1' and comment_type='') as tempcmt group by comment_author_email order by cnt desc limit 6";
$wall = $wpdb->get_results($query2);
$maxnum = $wall[0]->cnt;
foreach ($wall as $comment)
{
$width = round(40 / ($maxnum / $comment->cnt),2);
//此处是对应的条的宽度
if( $comment->comment_author_url )
$url = $comment->comment_author_url;
else $url="#";
$avatar = get_avatar( $comment->comment_author_email, $size = '32', $default = get_bloginfo('wpurl').'/avatar/default.jpg' );
$tmp = "<li><a rel=\"friend\" alt=\"avatar头像\" target=\"_blank\" href=\"".$comment->comment_author_url."\">".$avatar."<em>".$comment->comment_author."</em> <strong>+".$comment->cnt."</strong></br>".$comment->comment_author_url."</a></li>";
$output2 .= $tmp;
}
$output2 = "<ul class=\"readers-list\">".$output2."</ul>";
echo $output2 ;
?>
<!-- end 本月排行 -->
<div class="clear"></div>
<br />
<h2>本周评论排行 top9</h2>
<?php
$query3="select count(comment_id) as cnt, comment_author, comment_author_url, comment_author_email from (select * from $wpdb->comments left outer join $wpdb->posts on ($wpdb->posts.id=$wpdb->comments.comment_post_id) where yearweek(date_format(comment_date,'%y-%m-%d')) = yearweek(now()) and user_id='0' and comment_author_email != '改成你的邮箱账号' and post_password='' and comment_approved='1' and comment_type='') as tempcmt group by comment_author_email order by cnt desc limit 9";
$wall = $wpdb->get_results($query3);
$maxnum = $wall[0]->cnt;
foreach ($wall as $comment)
{
$width = round(40 / ($maxnum / $comment->cnt),2);
//此处是对应的条的宽度
if( $comment->comment_author_url )
$url = $comment->comment_author_url;
else $url="#";
$avatar = get_avatar( $comment->comment_author_email, $size = '32', $default = get_bloginfo('wpurl').'/avatar/default.jpg' );
$tmp = "<li><a rel=\"friend\" alt=\"avatar头像\" target=\"_blank\" href=\"".$comment->comment_author_url."\">".$avatar."<em>".$comment->comment_author."</em> <strong>+".$comment->cnt."</strong></br>".$comment->comment_author_url."</a></li>";
$output3 .= $tmp;
}
$output3 = "<ul class=\"readers-list\">".$output3."</ul>";
echo $output3 ;
?>
<!-- end 本周排行·全部结束 -->
3、将以上代码添加到主题目录的留言板模块的合适位置即可,代码中的三种时间段,最关键性的地方就修改变量名,否则一样的变量名会导致数据重复!需要修改的变量名是: output query,例如 output1 output2这种形式。
四、wordpress优化小结1、上面分享的几个wordpress优化小技巧基本上都是大家平常折腾博客时要用到的,对于wordpress有兴趣的朋友也可以从这些代码得到启示,从而开发出自己的wordpress实用功能来。
2、代码和插件都是张戈博主原创的,代码中都已经有具体的说明,基本上都是可以直接拿来用在自己的wordpress,当然你可能需要一定的wordpress折腾基础,例如添加函数,修改js和css文件等。
文章出自:张戈 博主投稿 由部落编辑整理,版权归原作者所有。本站文章除注明出处外,皆为作者原创文章,可*引用,但请注明来源。
上一篇: Vue.js 表单校验插件
下一篇: 外贸企业建站必须选择海外主机