skipping posts
-
On http://www.edicionsdigitals.com, i Would to show as featured (as see with lightblue background) just the stick post (the first). And after, on lasts posts (next on columns below), skip the sticked post, showing from the next.
This is my index.php code:
<?php get_header(); ?> <!-- BEGIN content --> <div id="content"> <!-- begin featured --> <div class="featured"> <?php $tmp_query = $wp_query; query_posts('showposts=1&cat='.get_cat_ID(dp_settings('featured'))); while (have_posts()) : the_post(); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <a class="thumb" href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'medium', 'alt="' . $post->post_title . '"'); ?></a> <p><?php echo dp_clean($post->post_content, 500); ?> (<a href="<?php the_permalink(); ?>">read more..</a>)</p> <?php endwhile; $wp_query = $tmp_query; ?> <div class="break"></div> </div> <!-- end featured --> <!-- BEGIN recent posts --> <div class="recent"> <?php if (have_posts()) : $count = 2; while (have_posts()) : the_post(); $count++; ?> <!-- begin post --> <div class="<?php if ($count==3) { $count = 0; echo 'f '; } ?>post"> <p class="category"><?php the_category(', ') ?>»</p> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <a class="thumb" href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'thumbnail', 'alt="' . $post->post_title . '"'); ?></a> <p>Wall street has finally gotten the piece of economic news it has been waiting for: the battered labo</p> <p class="date">Monday, 7 December 2009</p> <p class="comments"><a href="#">Comments</a></p> </div> <!-- end post --> <?php endwhile; ?> <p class="postnav"> <?php next_posts_link('« Older Entries'); ?> <?php previous_posts_link('Newer Entries »'); ?> </p> <?php else : ?> <div class="notfound"> <h2>Not Found</h2> <p>Sorry, but you are looking for something that is not here.</p> </div> <?php endif; ?> <div class="break"></div> </div> <!-- END recent posts --> </div> <!-- END content --> <?php get_sidebar(); get_footer(); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘skipping posts’ is closed to new replies.