Recent Articles
  • Popular Topics:
Submit Ticket

WordPress实现百度快速收录API代码提交

Release Time:2023-12-14  Views:80

WordPress实现百度快速收录API代码提交

WordPress实现百度快速收录API代码提交

前言:

WordPress实现百度快速收录API代码提交,如果对你有帮助就看看吧。

正文:

百度快速收录功能上线,全面继承百度移动专区天级收录功能,并且天级提交将于 5 月 18 日暂停使用。那么作为一个 WordPress 资深爱好者和 SEOer,当然需要第一时间来帮助大家利用搜索引擎工具来做好网站优化啦。

WordPress实现百度快速收录API代码提交 WordPress教程 第2张

将以下代码添加到你的 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 避免重复提交
	} 
}
Popular Topics

Privacy PolicyRegistrants' Benefits And Responsibilities SpecificationRegistrant Educational Information Copyright© 2024 重庆零玖云网络科技有限公司. All rights reserved.