How do I put my comment form above the comments?

The default way to do things seem to have the comment form below the comments. I’d like to have the form at the top. How do I achieve this?

2 Answers
2

The comment list is output via wp_list_comments(), and the comment-reply form is output via comment_form(); so, just ensure that you call comment_form() before you call wp_list_comments().

Leave a Comment