Where do you customize the default comment form?
-
So I’m making a theme from scratch. My comments.php file is literally just this right now
<ol class="commentlist"> <?php wp_list_comments(); ?> </ol> <?php comment_form(); ?>And I output this in the single.php file with simply this call
<?php comments_template(); ?>So without me really understanding it (and not able to back track to the source grr) this outputs everything I need. All the comments and then the comment form itself.
I’ve been reading the codex for a few days to find out how I can manipulate and customize the comment form. So far I have not see any clear method or SOURCE file to edit to output it the way I want.
Like lets say for example I want the comment form to list the input field first and then the labels for those inputs, so that way the label “Name” is sitting to the right of the name field instead of to the default left, Where and how would I make that happen?
Maybe if someone could lead me to just the right file or source at the very least I could find my way. I’m lost. Thanks
The topic ‘Where do you customize the default comment form?’ is closed to new replies.