Advertisement
miike

Untitled

Aug 17th, 2011
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name:Press Template
  4. */
  5.  
  6. get_header(); ?>
  7.  
  8. <div id="col-left">
  9. <div class="breadcrumbs"><?php if(function_exists('bcn_display')){ bcn_display();}?></div>
  10. <?php
  11. $args = array(
  12. 'cat' => 6,
  13. );
  14. query_posts( $args );
  15. ?>
  16. <?php the_author(); ?>
  17. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  18. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  19. <h1><?php the_title(); ?></h1>
  20.  
  21. <div class="entry_press">
  22. <?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
  23.  
  24. <?php if(function_exists('kc_add_social_share')) kc_add_social_share(); ?><div id="morepage-list"><?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  25. </div>
  26.  
  27. <div class="cboth"><hr></div>
  28. </div>
  29. </div>
  30. <div style="clear:both;"></div>
  31.  
  32.  
  33.  
  34. <?php endwhile; endif; ?>
  35. <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
  36. </div>
  37.  
  38. <?php get_sidebar(); ?>
  39.  
  40. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement