comment_form_title replys always at the end
-
Here is my comment.php. everything works except it puts the reply at the end of the comments every time.
<?php if ( have_comments() ) : ?> <h3><?php comments_number('No Comments', 'One Comment', '% Comments' );?></h3> <ul class="commentlist"><?php wp_list_comments(); ?><?php comment_id_fields(); ?></ul> <div id="respond"> <div class="reply"><?php comment_form_title( 'Leave a Reply ', 'Leave a Reply to %s ' ); ?><?php cancel_comment_reply_link() ?> <?php comment_form(); ?></div> </div> <div class="navigation"> <div class="alignleft"><?php previous_comments_link() ?></div> <div class="alignright"><?php next_comments_link() ?></div> </div> <?php else : // this is displayed if there are no comments so far ?><?php comment_form(); ?> <?php if ('open' == $post->comment_status) : // If comments are open, but there are no comments. else : // comments are closed endif; endif; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘comment_form_title replys always at the end’ is closed to new replies.