Non popup comments
-
How do i get my comments not to pop up I am using a free theme this is the index.php
<?php
get_header();
?><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<table border=0 cellpadding=0 cellspacing=0 width=100%><tr><td class=”date”>
<?php the_time(‘F d, Y’,true); ?> – <?php the_time() ?>
</tr></td></table><div class=”meta”><?php _e(“Filed under:”); ?> <?php the_category() ?> — written by <?php the_author(); ?> — <?php the_title(); ?> | <?php echo(str_word_count(get_the_content())); ?> words
</div><?php the_content(); ?>
<div align=”right”>
<?php wp_link_pages(); ?><BR>
<?php comments_popup_link(__(‘comments’), __(‘1 comment’), __(‘% comments’)); ?> </div></tr></td></table>
<HR><BR>
<!–
<?php trackback_rdf(); ?>
–></div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?><?php get_footer(); ?>
The topic ‘Non popup comments’ is closed to new replies.