Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: PHP  |  size: 0.46 KB  |  hits: 50  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. /**
  3.  * Archive Template
  4.  *
  5.  * @package Mysitemyway
  6.  * @subpackage Template
  7.  */
  8.  
  9. get_header(); ?>
  10.  
  11.         <?php
  12.                 query_posts( array(                                        
  13.                         'post_type' => array(                          
  14.                                 'portfolio'                                    
  15.                         ),
  16.                         'portfolio_category' => get_query_var( 'term' )
  17.                 ));
  18.         ?>     
  19.         <?php mysite_archive(); ?>
  20.        
  21.         <?php mysite_after_page_content(); ?>
  22.  
  23.                         <div class="clearboth"></div>
  24.                 </div><!-- #main_inner -->
  25.         </div><!-- #main -->
  26.  
  27. <?php get_footer(); ?>