maguiresc
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Fixing WordPress
In reply to: How To Add Time/Date Stamp to Comments.phpThat worked! Thanks! Do you mind me asking what code you used so I can reference for next time.
Forum: Fixing WordPress
In reply to: How To Add Time/Date Stamp to Comments.phpLine 221 Shows pp_comment, how would I integrate that?
Forum: Fixing WordPress
In reply to: How To Add Time/Date Stamp to Comments.phpYes, and unfortunately he is not able to assist. Is there a way to manually code the script into the functions.php page?
Forum: Fixing WordPress
In reply to: How To Add Time/Date Stamp to Comments.phpThanks I really appreciate this!
Forum: Fixing WordPress
In reply to: How To Add Time/Date Stamp to Comments.phpForum: Fixing WordPress
In reply to: How To Add Time/Date Stamp to Comments.phpThanks… Its trevoralves.com
The code is as follows for comments.php:
<?php if ( post_password_required() ) { ?> <p>This post is password protected. Enter the password to view comments.</p> <?php return; } if( have_comments() ) : ?> <h5 class="cufon"><?php comments_number('No comment', 'Comment', '% Comments'); ?> for <?php the_title(); ?></h5><br/> <?php wp_list_comments( array('callback' => 'pp_comment', 'avatar_size' => '40') ); ?> <!-- End of thread --> <br class="clear"/><br/> <?php endif; ?> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> <div class="pagination"><p><?php previous_comments_link(); ?> <?php next_comments_link(); ?></p></div><br class="clear"/><div class="line"></div><br/><br/> <?php endif; // check for comment navigation ?> <?php if ('open' == $post->comment_status) : ?> <div id="respond"> <?php include(TEMPLATEPATH . '/templates/comments-form.php'); ?> </div> <?php endif; ?>
Viewing 6 replies - 1 through 6 (of 6 total)