熊掌号api提交集成到wordpress中会更加方便,我这里还在发布页添加了是否提交的选项,这样可以按照我们的文章质量来区分是否提交。过程还是非常简单的,只是一个HTTP Request,熊掌号api提交并没有过多的参数或者门槛,有需要的可以来试试。还不知道如何绑定熊掌号、添加网站的请参考:
熊掌号如何添加网站?熊掌号怎么绑定网站?
如果是一位老站长,长期使用百度站长平台(现在的资源搜索平台),对熊掌号就不会陌生了。在谈熊掌号如何添加网站?熊 […]
参数名称 | 是否必选 | 参数类型 | 说明 |
---|---|---|---|
appid | 是 | string | 您的熊掌号唯一识别ID |
token | 是 | string | 在搜索资源平台申请的推送用的准入密钥 |
type | 否 | string |
对提交内容的数据类型说明,原创数据参数:original |
WordPress通用的办法使用 WP_Http,不用考虑网站使用的主题是否有限制的问题,详细可参考:http://blog.wpjam.com/article/wp-http/
/* //熊掌号原创提交 //原文链接:http://www.hekaiyu.cn/seo/4046.html */ function xzh_original($post_ID, $post){ //已成功提交的文章不再推送 if(get_post_meta($post_ID,'xzh_original',true) == 1) return; $url = get_permalink($post_ID); $api = 'http://data.zz.baidu.com/urls?appid=***********&token=*********&type=original'; $request = new WP_Http; $result = $request->request( $api , array( 'method' => 'POST', 'body' => $url , 'headers' => 'Content-Type: text/plain') ); $result = json_decode($result['body'],true); if (array_key_exists('success',$result)) { add_post_meta($post_ID, 'xzh_original', 1, true); } } add_action('publish_post', 'xzh_original', 0); /* //熊掌号提交 //原文链接:http://www.hekaiyu.cn/seo/4046.html */ function xzh_realtime($post_ID, $post){ //已成功提交的文章不再推送 if(get_post_meta($post_ID,'xzh_realtime',true) == 1) return; $url = get_permalink($post_ID); $api = 'http://data.zz.baidu.com/urls?appid=******&token=*******&type=realtime'; $request = new WP_Http; $result = $request->request( $api , array( 'method' => 'POST', 'body' => $url , 'headers' => 'Content-Type: text/plain') ); $result = json_decode($result['body'],true); if (array_key_exists('success',$result)) { add_post_meta($post_ID, 'xzh_realtime', 1, true); } } add_action('publish_post', 'xzh_realtime', 0);
以上代码添加到主题文件下的function.php就可以完成熊掌号api自动提交了