Homepage news list
-
I want to feature links to the latest news releases in the footer of my site. I’ve done this before with regular posts (see code below), but I’m wondering if you could help me do this with nooz posts?
Thanks!
Angela<?php query_posts('showposts=1&post_type=post'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <ul> <li> <h5><a href="<?php the_permalink() ?>"><?php the_time('F Y'); ?></a></h5> <p><?php the_title(); ?></p> </li> </ul> <?php endwhile; else : ?> <?php endif; ?> <?php rewind_posts(); ?> <?php query_posts('showposts=1&offset=1&post_type=post'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <ul> <li> <h5><a href="<?php the_permalink() ?>"><?php the_time('F Y'); ?></a></h5> <p><?php the_title(); ?></p> </li> </ul> <?php endwhile; else : ?> <?php endif; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Homepage news list’ is closed to new replies.