Advertisement
alchymyth

Untitled

Sep 12th, 2011
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.64 KB | None | 0 0
  1. <?php
  2. get_header();
  3. //OptionTree Stuff
  4. if ( function_exists( 'get_option_tree') ) {
  5.     $theme_options = get_option('option_tree');
  6.     $crumbs = get_option_tree('crumbs_on_off',$theme_options);
  7. }
  8. if ($crumbs && function_exists('dimox_breadcrumbs')) dimox_breadcrumbs();
  9. ?>
  10.  
  11. <h2 class="hTitle"><?php single_cat_title(); ?>
  12.     <?php if (category_description() == '') : else : remove_filter('term_description','wpautop'); ?>
  13.         &nbsp;//&nbsp; <small><?php echo category_description(); ?></small>
  14.     <?php endif; ?>
  15. </h2>
  16.  
  17. <div id="main">
  18.  
  19.     <div class="listing">
  20.  
  21. <p>
  22. This is some text that will display at the top of the Category page.
  23. </p>
  24.  
  25.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  26.    
  27.         <div <?php post_class(); ?>>
  28.        
  29.         <?php include("thumbnail.php"); ?>
  30.        
  31.         <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  32.        
  33.         <p><?php the_content(); ?></p>
  34.  
  35.         <div class="postMeta">
  36.         <a class="readMore" href="<?php the_permalink() ?>">Read more &rarr;</a>
  37.         <?php the_time('F j, Y'); ?>&nbsp;&nbsp; // &nbsp;&nbsp;<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>&nbsp;&nbsp; // &nbsp;&nbsp;<?php the_tags('', ', '); ?>
  38.         </div>
  39.        
  40.         <div class="clear"></div>
  41.         </div><!--end post-->
  42.  
  43.         <?php
  44.         endwhile;
  45.         include("navigation.php");
  46.         else :
  47.         ?>
  48.        
  49.         <h2 class="center">Not Found</h2>
  50.         <p class="center">Sorry, but you are looking for something that isn't here.</p>
  51.     <?php endif; ?>
  52.    
  53.     </div><!--end listing-->
  54.  
  55. </div><!--end main-->
  56.  
  57. <?php get_sidebar(); get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement