Need Help with Comments Code
-
I want to remove the Timestamp and Datestamp from the comments. How do I do so? Please help. The “Comments” code is below.
<?php if ( post_password_required() ) { return; } ?>
<section id=”comments” class=”themeform”>
<?php if ( have_comments() ) : global $wp_query; ?>
<h3 class=”heading”><?php comments_number( __( ‘No Answers’, ‘hueman’ ), __( ‘1 Answer’, ‘hueman’ ), __( ‘% Answers’, ‘hueman’ ) ); ?></h3>
<ul class=”comment-tabs group”>
<li class=”active”><i class=”fa fa-comments-o”></i><?php echo count($wp_query->comments_by_type[‘comment’]); ?> <?php _e( ‘Answers’, ‘hueman’ ); ?><?php if ( ! empty( $comments_by_type[‘comment’] ) ) { ?>
<div id=”commentlist-container” class=”comment-tab”>
<ol class=”commentlist”>
<?php wp_list_comments( ‘avatar_size=96&type=comment’ ); ?>
<!–/.commentlist–>
<?php if ( get_comment_pages_count() > 1 && get_option(‘page_comments’) ) : ?>
<nav class=”comments-nav group”>
<div class=”nav-previous”><?php previous_comments_link(); ?></div>
<div class=”nav-next”><?php next_comments_link(); ?></div>
</nav><!–/.comments-nav–>
<?php endif; ?></div>
<?php } ?><?php else: // if there are no comments yet ?>
<?php if (comments_open()) : ?>
<!– comments open, no comments –>
<?php else : ?>
<!– comments closed, no comments –>
<?php endif; ?><?php endif; ?>
<?php if ( comments_open() ) { comment_form(); } ?>
</section><!–/#comments–>
The blog I need help with is: (visible only to logged in users)
-
Hi there, as you’re using the self-hosted WordPress, the correct place to ask around is the WordPress.org forum, here http://wordpress.org/forums/
- The topic ‘Need Help with Comments Code’ is closed to new replies.