Advertisement
Guest User

Untitled

a guest
Feb 14th, 2013
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package Coraline
  4. * @since Coraline 1.0
  5. */
  6.  
  7. get_header(); ?>
  8.  
  9. <div id="content-container">
  10. <div id="content" role="main">
  11.  
  12. <h1 class="page-title"><?php
  13. printf( __( 'Category Archives: %s', 'coraline' ), '<span>' . single_cat_title( '', false ) . '</span>' );
  14. ?></h1>
  15. <?php
  16. $category_description = category_description();
  17. if ( ! empty( $category_description ) )
  18. echo '<div class="archive-meta">' . $category_description . '</div>';
  19.  
  20. get_template_part( 'loop', 'category' );
  21. ?>
  22.  
  23. </div><!-- #content -->
  24. </div><!-- #content-container -->
  25.  
  26. <?php get_sidebar(); ?>
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement