谷歌AMP是最早提出的,然后百度紧跟谷歌脚本搞出了个MIP,还提出可以兼容谷歌AMP的。
但是似乎效果并不如何,以前在百度搜索资源的收录查询中还能看到提交MIP的功能模块,现在都已经找不到MIP的路口了。
所以感觉还是谷歌靠谱一些,但是大家都是成年人嘛,当然是两个都要,所以今天小编分享一篇利用WordPress站点增加AMP移动端加速并主动推送到百度。
这样我们就能兼顾两者了嘛,现在神马搜索也有推出兼容百度MIP功能,但小编没有找到是否能兼容谷歌AMP。
言归正传,实现这个操作其实只有两个关键点。
一、安装AMP插件
可以在WordPress仪表盘,安装插件处直接搜索 WordPress 的 AMP 插件安装。
或者在 WordPress 插件库下载上传 地址:https://wordpress.org/plugins/amp/
二、将AMP页面提交到百度
/** * WordPress增加谷歌AMP加速移动页面并自动推送到百度 * https://www.dujin.org/12609.html */ if(!function_exists('Baidu_amp')){ function Baidu_amp($post_ID) { //已成功推送的文章不再推送 if(get_post_meta($post_ID,'Baiduamp',true) == 1) return; $url = get_permalink($post_ID); if(get_post_type($post_ID)=='page'){ $url=$url.'?amp'; } if(get_post_type($post_ID)=='post'){ $url=$url.'/amp/'; } $api = 'http://data.zz.baidu.com/urls?site=***************&token=*************=amp'; //登录百度搜索资源平台 >> 网站支持 >> 数据引入 >> MIP& >> AMP 下方的数据提交就能看到 AMP 推送接口调用地址 $request = new wmh_Http; $result = $request->request( $api , array( 'method' => 'POST', 'body' => $url , 'headers' => 'Content-Type: text/plain') ); $result = json_decode($result['body'],true); //如果推送成功则在文章新增自定义栏目 Baiduamp,值为 1 if (array_key_exists('success_amp',$result)) { add_post_meta($post_ID, 'Baiduamp', 1, true); } } add_action('publish_post', 'Baidu_amp', 0); }