如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
comments_template()
comments_open() 是否开启评论
post_password_required()
have_comments()
wp_list_comments()
is_user_logined_in()
comment_form()
评论 <br> <? if(!comments_open()){ ?> 评论已关闭 <? }elseif(post_password_required()){ ?> 请输入密码再查看 <? }elseif(!have_comments()){ ?> 还没有任何评论 <? }else{ wp_list_comments(); } ?> <? if(get_option('comment_registration') && !is_user_logined_in()){ ?> 先<a href="<? echo wp_login_url(get_permalink()); ?>">登录</a>才能发表评论 <? }elseif(comments_open()){ comment_form(); } ?>
have_comments
wp_list_comments
有点问题,未解决
> 本文由子枫笔记快捷发布!