在wordpress中弹出评论框

时间:2019-05-29 06:50:26

标签: wordpress popup comments box

当有人要在存档文件中发表评论时,我想在我的Wordpress博客上显示弹出框,例如我的索引文件中有“留下评论”链接,并且当用户单击该链接时,评论框,而不是重定向到单个帖子页面

我尝试了很多插件,但是没有用

这是我在Wordpress中的代码

<?php comments_popup_link( __( 'Leave a comment', 'beautytemple' ), __( '1 Comment', 'beautytemple' ), __( '% Comments', 'beautytemple' ) ); ?>

1 个答案:

答案 0 :(得分:0)

如果我们正在使用comments_popup_link()函数。我们必须使用the_loop, have_posts() ,the_post()comments_popup_link()仅在循环中使用此功能时有效。

相关问题