文章最后更新时间:
效果预览
方法/步骤
一、将以下代码添加至当前主题文件下的 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='http://www.baidu.com/s?wd='.$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="http://www.baidu.com/s?wd='.get_the_title().'"><span class="but c-yellow"><i class="fa fa-paw" aria-hidden="true"></i>百度已收录</span></a>';
} else {
echo '<a style="color:red; rel="external nofollow" title="一键帮忙提交给百度,谢谢您!" target="_blank" href="http://zhanzhang.baidu.com/sitesubmit/index?sitename='.get_permalink().'"><span class="but c-grey"><svg class="icon" aria-hidden="true"><use xlink:href="#io-baidu1"></use></svg>百度未收录</span></a>';
}
}
二、以下代码添加至自己主题页面文件适当位置,不同主题文件有所不同,子比主题在 /zibll/inc/functions/zib-single.php 文件,大概在315行左右,搜索下面代码放在下面即可。
<div class="article-content">
<!--百度检测收录按钮命令-->
<?php echo ' '; baidu_record(); ?>
<!--百度检测收录按钮命令-->
注意:不同主题根据自己的主题情况进行修改。
本文链接:https://lzphy.top/1427/© 版权声明
THE END
暂无评论内容