|  Topic awaiting preservation: Wordpress Help Needed (Page 1 of 1)  | |
|---|---|
| Maniac (V) Mad Librarian From: the space between us |  posted 03-20-2008 16:39 i'm developing a wordpress site, and need a list which displays (and links) the most recent blog posts. code: <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php endwhile; endif; ?> 
 | 
| Maniac (V) Inmate From: The Land of one Headlight on. |  posted 03-20-2008 22:34 Can't help you I'm sorry to say but just in case you missed it.... | 
| Paranoid (IV) Inmate From:  |  posted 03-21-2008 04:08 Can you make those links static, or do you need them dynamic. | 
| Maniac (V) Mad Librarian From: the space between us |  posted 03-21-2008 12:31 i would need them dynamic. static links is plan B | 
| Maniac (V) Mad Scientist with Finglongers From: Germany |  posted 03-21-2008 12:55 well... is there any reference for word press scripting out there?  | 
| Paranoid (IV) Inmate From:  |  posted 03-21-2008 15:32 NoJive: | 
| Maniac (V) Mad Scientist with Finglongers From: Germany |  posted 03-21-2008 17:08 ok... I'd assume you have to do code: // Get the last 10 posts in the special_cat category.
  <?php query_posts('category_name=special_cat&showposts=10'); ?>
  <?php while (have_posts()) : the_post(); ?>
    <!-- Do special_cat stuff... -->
  <?php endwhile;?> | 
| Bipolar (III) Inmate From: Minnesota |  posted 03-21-2008 17:26 This plugin might help. |