Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. Template Name: Home
  6.  
  7. */
  8.  
  9. ?>
  10.  
  11.  
  12.  
  13. <?php get_header(); ?>
  14.  
  15.  
  16. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  17.  
  18. <?php the_content(); ?>
  19.  
  20. <?php endwhile; ?>
  21.  
  22. <?php else : ?>
  23.  
  24. <?php endif; ?>
  25.  
  26.  
  27.  
  28. <?php
  29.  
  30. $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  31.  
  32. $args=array(
  33.  
  34. 'posts_per_page' => 2,
  35.  
  36. 'paged' => $paged,
  37.  
  38. );
  39.  
  40. query_posts($args);
  41.  
  42. ?>
  43.  
  44. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  45.  
  46.  
  47.  
  48. <?php the_excerpt(); ?>
  49.  
  50.  
  51.  
  52. <?php endwhile; ?>
  53.  
  54. <?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
  55.  
  56. <?php else : ?>
  57.  
  58. <?php endif; ?>
  59.  
  60.  
  61.  
  62. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment