百度快速收录功能上线,全面继承百度移动专区天级收录功能,并且天级提交将于 5 月 18 日暂停使用。第一时间来帮助大家利用搜索引擎工具来做好网站优化啦。
wordpress 百度快速收录 api 提交
将以下代码添加到你的 wordpress 当前使用的主题的 functions.php 文件合适地方,并且将代码中的 api 地址修改替换为你在百度搜索资源平台的快速收录的 api 接口地址即可。
//wordpress 百度快速收录 api 提交代码
add_action('save_post', 'fanly_baidu_dailysubmit', 10, 3);
function fanly_baidu_dailysubmit($post_id, $post, $update){
if($post->post_status != 'publish' || get_post_meta($post_id,'fanly_submit',true)=='ok') return;
$api = 'http://data.zz.baidu.com/urls?site=https://zhangzifan.com/&token=c4lbbowrjzmedaam&type=daily';//快速收录复制过来
$response = wp_remote_post($api, array(
'headers' => array('accept-encoding'=>'','content-type'=>'text/plain'),
'sslverify' => false,
'blocking' => false,
'body' => get_permalink($post_id)
));
if ( !is_wp_error( $response ) ) {
$res = json_decode($response['body'], true);
if($res['success_daily']==1)update_post_meta($post_id, 'fanly_submit', 'ok');// ok 避免重复提交
}
}
快速收录使用说明
1、快速收录仅限于提交移动端页面及移动端自适应页面。
2、快速收录工具可以向百度搜索主动推送资源,缩短爬虫发现网站链接的时间,对于高实效性内容推荐使用快速收录工具,实时向搜索推送资源。
3、资源不符合移动资源标准,依然会占用配额,请您谨慎选择提交类型。
4、如果网站已通过 https 认证工具验证为 https 网站,请确保所提交链接的协议头为 https。