使用jQuery可以很容易地做到这一点
只需将您的评论表单包装在一个div中并隐藏,添加一个按钮或链接,然后在他的单击事件中显示如此平滑的评论表单,如下所示:
<a href="#" ID="Leave_a_comment">Leave a Comment</a>
<div id="comment_form_wrapper" style="display: none;">
<?php comments_template( \'\', true ); ?>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(\'#Leave_a_comment\').click(function() {
$(\'#comment_form_wrapper\').show();
});
});
</script>