我正在尝试在我的WordPress博客上实施Google自定义搜索,它会出现以下错误。
这是我的Google自定义搜索脚本。
<script>
(function() {
var cx = '013993520142122462925:4nlpeoa5gt4';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:')+'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
它在静态html中工作得很好,但是当我在wordpress中集成上面的脚本时,它就会出现上述错误。
有什么问题?
注意:我不想在Google自定义搜索中使用wordpress插件,因为它需要一些服务器资源。