您可以尝试一种简单的jQuery方法,隐藏comments div并插入一个按钮使其显示出来。
说明:
在您的功能中。主题的php文件中,放置这行代码以确保包含jQuery以运行代码:
wp_enqueue_script(\'jquery\');
然后,您可以添加此函数,将javascript代码放入每个网页的页脚中:
function your_hidden_comments(){ ?>
<script type="text/javascript" defer="defer">
var comment_div = jQuery(\'#comments\');
if(comment_div[0]){
jQuery(\'<button id="show_comments">Show Comments</button>\').insertBefore(comment_div);
comment_div.hide();
jQuery(\'#show_comments\').on(\'click\',function(){ comment_div.fadeIn(\'slow\'); jQuery(\'#show_comments\').fadeOut(\'slow\'); });
}
</script>
<?php }
add_action(\'wp_footer\', \'your_hidden_comments\');
我希望这有帮助;如果有任何问题,请回复。