通过ajax查询文章页百度收录判断,优化加载白屏时间!
我用的是杨小姐提供的API接口,如果不喜欢可以自己做!
同样还是有js自动推送功能
我这里用的是emlog大前端的主题,请自己对应修改!
1.打开/content/templates/emlog_dux/js/main.js
2.在最底部添加如下代码!
$(function () { $.getJSON('https://api.yum6.cn/baidu/query.php?url='+window.location.href, function(json, textStatus) { if (json.state == 1) { $('#ae_bdcx').html('本文已被百度收录!'); $("#ae_bdcx").attr('href','https://www.baidu.com/s?wd='+window.location.href); }else{ $('#ae_bdcx').html('坐等收录'); $('#ae_bdcx').css('color','#ff0000'); $('#ae_bdcx').attr('href','http://zhanzhang.baidu.com/sitesubmit/index?sitename='+window.location.href); var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') {bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';} else {bp.src = 'http://push.zhanzhang.baidu.com/push.js';} var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(bp, s); } }); });
3.打开eclog.php文件,在评论的后面追加一项!代码如下
<span><i class="fa fa-tag fa-fw"></i><a id="ae_bdcx" rel="external nofollow" target="_blank"></a></span>
全部改好后,保存,然后刷新缓存!有CDN的一定要清一下缓存!
本文地址:http://www.aeink.com/995.html
转载请注明出处 AE博客|墨渊 » EMLOG拓展 | ajax查询文章页是否被百度收录
发表评论