Yup, same problem More tag doesn’t work no matter what I do. Using theme Vita 1.6. Posts to author unanswered. Any help? Below is the code to my index page. Similar code is on the page.php. Thanks in advance.
<?php get_header(); ?>
<div id="content-wrap">
<div id="content">
<div class="gap">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="post-title"><a class="intitle" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?>
</a> <span class="commr">
<?php comments_popup_link('0', '1', '%'); ?>
</span></h2>
<div class="timr"> Posted on
<?php the_time('F d, Y') ?>
by
<?php the_author() ?>
<?php edit_post_link('e', '<span class="editr">[', '] </span>'); ?>
</div>
<div class="entry">
<?php the_content('Read the rest of this entry →'); ?>
</div>
<p class="postmetadata">
<?php the_tags('Tags: ',', ','<br />');?>
<span class="catr">Category
<?php the_category(', ') ?>
</span> </p>
</div>
<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
<div class="navigation">
<div class="alignleft">
<?php next_posts_link('← Previous Entries') ?>
</div>
<div class="alignright">
<?php previous_posts_link('Next Entries →') ?>
</div>
</div>
<?php } ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div> <!-- /gap -->
</div> <!-- /content -->
</div> <!-- /content-wrap -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>