/*
plug name:百度主动推送
Author: wp操
Author URI: https://blog.jinlinet.com/
*/
add_action('save_post', 'wpcao_save_post_notify_baidu_zz', 10, 3);
function wpcao_save_post_notify_baidu_zz($post_id, $post, $update){
if($post->post_status != 'publish') return;
$baidu_zz_api_url = 'http://data.zz.baidu.com/urls?site=https://sy.jinlinet.com&token=xxxx'; //换成你的
$response = wp_remote_post($baidu_zz_api_url, array(
'headers' => array('Accept-Encoding'=>'','Content-Type'=>'text/plain'),
'sslverify' => false,
'blocking' => false,
'body' => get_permalink($post_id)
));
}
// ** 百度主动推送代码 - 结束 ** // |