Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
codemirror
/
wp-post-to-pdf-enhanced-cache
/
knowhow
:
single.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php get_header(); ?> <?php // Get sidebar position $ht_post_sidebar = null; $ht_post_sidebar = get_post_meta( get_the_ID(), 'st_post_sidebar', true ); if ($ht_post_sidebar == '') { $ht_post_sidebar = 'sidebar-right'; } ?> <!-- #primary --> <div id="primary" class="<?php echo $ht_post_sidebar ?> clearfix"> <!-- .container --> <div class="container"> <!-- #content --> <section id="content" role="main"> <!-- #page-header --> <header id="page-header" class="clearfix"> <h1 class="page-title"><?php the_title(); ?></h1> <?php st_breadcrumb(); ?> </header> <!-- /#page-header --> <?php while ( have_posts() ) : the_post(); ?> <?php st_set_post_views(get_the_ID()); ?> <?php get_template_part( 'content', 'meta' ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>> <!-- .entry-header --> <header class="entry-header"> <?php if ( has_post_format( 'video' )) { ?> <?php ht_post_format_video() ?> <?php } else { ?> <?php ht_post_format_standard() ?> <?php } ?> </header> <!-- /.entry-header --> <div class="entry-content"> <?php the_content(); ?> <?php numbered_in_page_links( array( 'before' => '<div class="page-links"><strong>' . __( 'Pages:', 'framework' ) .'</strong>', 'after' => '</div>' ) ); ?> </div> <?php if (is_single() && has_tag()) { ?> <div class="tags"><?php the_tags( __( '<strong>Tagged:</strong>', 'framework' ),'',''); ?></div> <?php } ?> </article> <?php if (of_get_option('st_single_authorbox')) { ?> <?php get_template_part('author-bio'); ?> <?php } ?> <?php if (of_get_option('st_single_related')) { ?> <?php get_template_part('single', 'related'); ?> <?php } ?> <?php endwhile; // end of the loop. ?> </section> <!-- #content --> <?php if ($ht_post_sidebar != 'sidebar-off') { ?> <?php get_sidebar(); ?> <?php } ?> </div> <!-- .container --> </div> <!-- /#primary --> <?php get_footer(); ?>