目前Bing搜索已经超过百度成为国内PC端市场份额最高的搜索引擎,达到了50.45%,所以Bing搜索引擎优化已经是必不可少的操作了。通过自动提交URL功能可以快速的将文章提交给Bing,以加快页面收录。有些站长不想安装插件,我们也可以通过添加代码的方式实现。首先需要准备API 密钥,进入bing站长平台,点击页面右上角齿轮图标->API访问->API密钥,然后创建API密钥。
将如下代码复制到主题functions.php文件中
//Bing API提交URL
function bd_post_json($urls, $api, $httpheard ) {
$ch = curl_init();
$options = array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => $urls,
CURLOPT_HTTPHEADER => $httpheard,
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
curl_close($ch);
}
function bd_bing_api( $post_ID, $post, $update ) {
if ( wp_is_post_revision( $post_ID ) || wp_is_post_autosave( $post_ID ) ) {
return;
}
if ( 'publish' === $post->post_status ) {
if ( 'post' === $post->post_type ) {
$urls = '{ "siteUrl":"https://nuowa.net","url":"'.get_permalink( $post ).'" }';
$api = 'https://ssl.bing.com/webmaster/api.svc/json/SubmitUrl?apikey=你的API密钥';
$httpheard = array('Content-Type: application/json', 'charset=utf-8');
bd_post_json( $urls, $api, $httpheard );
}
}
}
add_action( 'save_post', 'bd_bing_api', 10, 3 );
将nuowa.net替换为你网站的URL,将“你的API密钥”替换为你实际的API字符串,然后保存即可
你可以发布一篇文章试试,提交结果是实时可见的,你发布完文章,再去bing站长平台就能看到你的提交结果。