Advertisement
Guest User

minimatica category.php mod

a guest
Dec 5th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template for category archives
  4. *
  5. * @package WordPress
  6. * @subpackage Minimatica
  7. * @since Minimatica 1.0
  8. */
  9.  
  10. get_header(); ?>
  11. <?php if( ( 'gallery' == minimatica_get_option( 'category_view' ) ) && ( get_query_var( 'cat' ) != minimatica_get_option( 'blog_category' ) ) ) : ?>
  12.  
  13.  
  14.  
  15. <?/* this is the default code:
  16. <div id="slider">
  17. <?php get_template_part( 'loop', 'slider' ); ?>
  18. </div><!-- #slider -->
  19.  
  20. */?>
  21.  
  22.  
  23.  
  24. <?/* this is the mod */?>
  25.  
  26. <div id="slider">
  27. <?php get_template_part( 'loop-slider-categories' ); ?>
  28. </div><!-- #slider -->
  29.  
  30.  
  31.  
  32.  
  33. <?php else : ?>
  34. <div class="title-container">
  35. <h1 class="page-title"><?php single_cat_title(); ?></h1>
  36. </div><!-- .title-container -->
  37. <div id="container">
  38. <?php get_template_part( 'loop', 'category' ); ?>
  39. <?php get_sidebar(); ?>
  40. <div class="clear"></div>
  41. </div><!-- #container -->
  42. <?php endif; ?>
  43. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement