wordpress模板开发 | 评论模板调用(12)
comments_template()
comments_open() 是否开启评论
post_password_required()
have_comments()
wp_list_comments()
is_user_logined_in()
comment_form()
评论
if(!comments_open()){ ?> 评论已关闭 }elseif(post_password_required()){ ?> 请输入密码再查看 }elseif(!have_comments()){ ?> 还没有任何评论 }else{ wp_list_comments(); } ?> if(get_option('comment_registration') && !is_user_logined_in()){ ?> 先">登录才能发表评论 }elseif(comments_open()){ comment_form(); } ?>
have_comments
wp_list_comments
有点问题,未解决
> 本文由子枫笔记快捷发布!
本站文章如未注明出处均为原创,转载请注明出处,如有侵权请邮件联系站长。