Advertisement
Guest User

category.php

a guest
Apr 3rd, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.50 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying Category pages.
  4.  *
  5.  */
  6. $settings = get_option( "ntl_theme_settings" );
  7. get_header(); ?>
  8.  
  9.  
  10.  
  11.     <div class="outer">
  12.         <div class="frameset container clear">
  13.             <?php if ($settings['ntl_disable_audio'] != 'off'){ ?>
  14.             <div class="clear headtop">
  15.                 <div class="page-title" >
  16.                     <h1 class="vfont"><?php single_cat_title(); ?></h1>
  17.                 </div>
  18.                                        
  19.                 <?php echo lets_get_albumselector(); ?>                    
  20.                 <?php echo lets_get_musicplayer(); ?>
  21.                    
  22.             </div>             
  23.             <?php } else { ?>
  24.            
  25.             <div class="clear headtop" style="height: auto;">                  
  26.                 <div class="page-title" style="width: 100%; margin-bottom: 40px;">
  27.                     <h1 class="vfont"><?php single_cat_title(); ?></h1>
  28.                 </div>         
  29.             </div>
  30.            
  31.             <?php } ?>
  32.            
  33.             <?php if (!$settings['ntl_show_timer']) { ?>
  34.                 <div class="cdowntop"> 
  35.                 <?php echo get_for_timer(''); ?>
  36.             <?php } else { ?>
  37.                 <div class="cdownnone">
  38.             <?php } ?>
  39.  
  40. <div class="bodymid hfeed hpage">
  41.     <?php if ($settings['ntl_disable_audio'] != 'off'){ ?>
  42.         <div class="drawer">&nbsp;</div>
  43.     <?php } ?>
  44.     <div id="main">
  45.         <div id="content" role="main">
  46.             <div class="container clear">
  47.                 <div class="grid8 first">      
  48.                     <div id="content" role="main">
  49.                         <?php get_template_part( 'loop', 'category' ); ?>              
  50.                         <?php adminace_paging(); ?>
  51.                     </div>
  52.                 </div>
  53.                 <?php get_sidebar(); ?>
  54.             </div>
  55.         </div>
  56.     </div>
  57. </div>
  58. </div>
  59. <?php lets_make_carousel(); ?>
  60.  
  61.  
  62. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement