I looked through codex and searched the forum but couldn't find anything. Is it possible to just add a simple template tag to display a list of all post titles linked to each post?
Thanks!
I looked through codex and searched the forum but couldn't find anything. Is it possible to just add a simple template tag to display a list of all post titles linked to each post?
Thanks!
Any ideas?
I'm kinda thinking like this:
<?php the_author_posts_link(); ?>
But just somehow for all authors?
BUMP? anyone?
This will show all posts I just can't figure out how to get the pagination to work. If you set the posts_per_page=10 parameter it will only show 10 posts and the next and previous links will display the same 10 posts.
<?php query_posts('posts_per_page=10'); ?>
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
<?php endif; ?>
If anyone knows how to get the pagination to work with this I would really appreciate it!!
This topic has been closed to new replies.