This is my first foray into customizing the WP comment form, and it's giving me a bit of trouble.
Ideally, I'd like to have a comment form with 3 fields: Name, Location, and Comment. In the comment list, I want the comment to display and just below that have "Name | Location"
As you can see on the live site, it isn't quite coming out that way.
comments.php:
<?php comment_form(array(
'title_reply'=> 'Please feel free to share your home owning hopes and dreams.',
'fields' => apply_filters( 'comment_form_default_fields', $fields ),
));
?>
I've been struggling with this for a day or two, so any insight or tips are greatly appreciated.