Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
1. Create a page,
2. allow comments on it,
3. in the WP settings, limit comments to two levels and uncheck that users must be registered to comment.
4. Hide the "Reply" link in the comments for everyone except administrators (or just registered ones). is_user_logged_in or current_user_can( 'manage_options' ) functions.
If you don’t want to get into the code at all, then you can hide it using css:
.comment-reply-link {
display: none;
}
.logged-in .comment-reply-link {
display: inline;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question