Advertisement
Guest User

Untitled

a guest
May 31st, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.89 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php get_sidebar(); ?>
  3. <div>
  4. <?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
  5. </div>
  6.     <!-- BEGIN content -->
  7.     <div id="content">
  8.         <div class="guia">
  9.         <?php the_category(' » ','multiple'); ?>
  10.         <div class="space"></div>
  11.  
  12. <li><?php the_category(''); ?></li>
  13.         </div>
  14.         <?php if (have_posts()) : the_post(); ?>
  15.         <div id="categorias" align="center">
  16.         <?php wp_list_categories('orderby=name&child_of=2435&show_count=1&title_li='); ?>
  17.         </div>
  18.         <div class="space"></div>
  19.                 <div align="right"><?php include (TEMPLATEPATH . '/social.php'); ?></div>
  20.         <div class="break"></div>
  21.         </div>
  22.         <!-- end latest -->
  23.         <?php else : ?>
  24.         <div class="notfound">
  25.         <h2>Not Found</h2>
  26.         <p>Sorry, but you are looking for something that is not here.</p>
  27.         </div>
  28.         <?php endif; ?>
  29.         </div>  </div>
  30.     <!-- END content -->
  31. <?php get_sidebar(); get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement