有没有办法让每个人都能看到评论,但只有帖子作者或属于高级角色的人才能发表评论?
我可以这样做吗
global $current_user;
get_currentuserinfo();
if (is_user_logged_in() && $current_user->ID == $post->post_author) { comment_form();
} else {
if( $current_user->roles[0] == \'admin\' || $current_user->roles[0] == \'premium\' )
{ comment_form(); } endif;
else {
echo \'<h4>You are not allowed to post comments.</h4>\';
}
对不起,我应该说,有两个角色,基本和高级。两者都可以发表文章。但只有premium可以对任何人的帖子发表评论,Basic只能对自己的帖子发表评论