Show all titles ever written in Archive?
-
Hi!
I want to show the titles of all my posts in the archive section. I’ve tried this:
<?php if (have_posts()) : ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<?php } ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> - <?php the_time('j.m.y') ?>
</li><?php endwhile; ?>
</ul><?php next_posts_link('« Previous Entries') ?> |
<?php previous_posts_link('Next Entries »') ?><?php else : ?>
<h1>Not Found</h1>
<?php endif; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show all titles ever written in Archive?’ is closed to new replies.