我正在使用一个插件(Comments Evolved) 在最近建造的场地上。
我遇到的问题是,这个插件将全局排队,并向所有页面的页眉和页脚添加操作。我想删除的行动,除了单一的职位只。
我在我的functions.php
文件:
// strip out the plugin junk slowing down pages it\'s not used on
function strip_the_junk() {
if (!is_single() {
remove_action(\'wp_head\', \'gplus_comments_enqueue_styles\');
remove_action(\'wp_footer\', \'gplus_comments_enqueue_scripts\');
}
)};
add_action(\'wp_enqueue_scripts\', \'strip_the_junk\', 11);
这使我的网站崩溃。对于不断演变的评论,这就是
hook.php
:
function gplus_comments_enqueue_styles()
{
wp_enqueue_style(\'gplus_comments_tabs_css\');
}
add_action(\'wp_head\', \'gplus_comments_enqueue_styles\', 4269);
function gplus_comments_enqueue_scripts()
{
print "\\n<script>jQuery(\'#comment-tabs\').tabs();</script>\\n";
/*
<script type="text/javascript">
(function() {
var po = document.createElement(\'script\'); po.type = \'text/javascript\'; po.async = true;
po.src = \'https://apis.google.com/js/client:plusone.js\';
var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
*/
}
add_action(\'wp_footer\', \'gplus_comments_enqueue_scripts\', 4269);
你有没有想过我在这件事上出了什么错?
谢谢