Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DIV 1.97 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php $mts_options = get_option(MTS_THEME_NAME); ?>
  3. <div ID="page" class="<?php mts_single_page_class(); ?>">
  4.     <article class="<?php mts_article_class(); ?>">
  5.         <div ID="content_box" >
  6.             <?php IF (have_posts()) WHILE (have_posts()) : the_post(); ?>
  7.                 <div ID="post-<?php the_ID(); ?>" <?php post_class('g post'); ?>>
  8.                     <div class="single_post">
  9.                         <header>
  10.                             <h1 class="title single-title entry-title"><?php the_title(); ?></h1>
  11.                             <?php mts_the_postinfo('single'); ?>
  12.                         </header><!--.headline_area-->
  13.                         <div class="post-single-content box mark-links entry-content">
  14.                             <div class="thecontent">
  15.                                 <?php the_content(); ?>
  16.                             </div>
  17.                             <?php wp_link_pages(array('before' => '<div class="pagination">', 'after' => '</div>', 'link_before' => '<span class="current"><span class="currenttext">', 'link_after' => '</span></span>', 'next_or_number' => 'next_and_number', 'nextpagelink' => __('Next', 'mythemeshop'), 'previouspagelink' => __('Previous', 'mythemeshop'), 'pagelink' => '%', 'echo' => 1)); ?>    
  18.                            
  19.                             <?php mts_the_tags('<span class="tagtext">' . __('Tags', 'mythemeshop') . ':</span>', ', '); ?>
  20.                         </div><!--.post-single-content-->
  21.                     </div><!--.single_post-->
  22.                     <?php IF (in_category('30')) { include (TEMPLATEPATH . '/game-info.php'); } ELSE { echo(''); } ?>
  23. </div>
  24.                                             </div>                  
  25.                     </div>
  26.                      </div>
  27.                 </div><!--.g post-->
  28.                 <?php comments_template('', true); ?>
  29.             <?php endwhile; /* end loop */ ?>
  30.         </div>
  31.     </article>
  32. <?php get_sidebar(); ?>
  33. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement