I can't for the life of me sort this out. I basically just need the snip of php to call the post titles only into a bulleted list from a specific category. So I would have a clickable list of post titles. thanks for the help, Nigel
You probably already have this and you don't realise it. Strip down your index.php template so that you only display this part <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> Code (markup): To do this for a selected category you would use something like <?php if ( in_category('3') ) { ?> There is a good example of how to do this here.