Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <section id="primary" class="full-width">
  2. <div id="content" role="main" class="container_12" >
  3. <div id="archive-itms" class="container_12" >
  4. <?php
  5. global $wp_query;
  6. $first_page_total= 5; // total number of posts on first page
  7. $paginated_total = 20;
  8. $found_posts = $wp_query->found_posts;
  9. $pages = 1 + ceil(($found_posts - $first_page_total) / $paginated_total);
  10. $wp_query->max_num_pages = $pages;
  11. ?>
  12. <?php /* Start the Loop */ ?>
  13. <?php while ( have_posts() ) : the_post(); ?>
  14. <?php if ( $paged < 2 ) : ?>
  15. <?php if( $wp_query->current_post == 0 && !is_paged() ) : ?>
  16. <div id="latest-news-block" class="container_12" >
  17. <div class="grid_8">
  18. <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('large-img'); ?></a>
  19. </div>
  20. <div class="grid_4">
  21. <div class="latest-news-copy">
  22. <p class="date"><?php the_time('j F Y') ?></p>
  23. <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
  24. <a class="more" href="<?php the_permalink() ?>"><?php _e( 'Read more &#8230;', 'toolbox' ); ?></a>
  25. </div>
  26. </div>
  27. <div class="clearboth"></div>
  28. </div>
  29. <?php else : ?>
  30. <div class="news-block grid_3">
  31. <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('xmedium-img'); ?></a>
  32. <p class="date"><?php the_time('j F Y') ?></p>
  33. <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
  34. <a class="more" href="<?php the_permalink() ?>"><?php _e( 'Read more &#8230;', 'toolbox' ); ?></a>
  35. </div>
  36. <?php endif; ?>
  37. <?php else : ?>
  38. <div class="news-block grid_3">
  39. <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('xmedium-img'); ?></a>
  40. <p class="date"><?php the_time('j F Y') ?></p>
  41. <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
  42. <a class="more" href="<?php the_permalink() ?>"><?php _e( 'Read more', 'toolbox' ); ?></a>
  43. </div>
  44. <?php endif; ?>
  45. <?php endwhile; ?>
  46. <div class="clearboth"></div>
  47. </div>
  48.  
  49. <?php /* Display navigation to next/previous pages when applicable */ ?>
  50. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  51. <nav id="nav-below">
  52. <?php wp_pagenavi(); ?>
  53. </nav><!-- #nav-below -->
  54. <?php endif; ?>
  55.  
  56. </div><!-- #content -->
  57. </section><!-- #primary -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement