Advertisement
Guest User

Test1

a guest
Mar 9th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: Category
  4.  */
  5.  
  6. remove_action( 'genesis_loop', 'genesis_do_loop' );
  7. ?>
  8.  
  9. <h1 class="entry-title"><?php single_cat_title(); ?></h1>
  10.     <div class="cat-desc">
  11.     <?php echo category_description(); ?>
  12.     </div>
  13.        
  14. <?php
  15. add_action( 'genesis_loop', 'genesis_do_loop' );
  16. function custom_archives() {  ?>
  17.    
  18. <div class="entry-content">
  19.  
  20. <?php the_title(); ?>
  21.  
  22.     <?php the_excerpt('Read the rest of this entry »'); ?>                                                                            
  23.     </div><!-- end .entry-content -->
  24.  
  25. <?php
  26. }
  27. genesis();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement