File: /var/www/html/delstar/wp-content/themes/construction/content-single.php
<?php
/**
* @package WPCharming
*/
$blog_single_thumb = wpcharming_option('blog_single_thumb');
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<div class="entry-meta">
<?php wpcharming_posted_on(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<?php
if ( $blog_single_thumb ) {
if( has_post_thumbnail( ) ) {
echo '<div class="post-thumbnail">';
the_post_thumbnail( 'blog-large' );
echo '</div>';
}
}
?>
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'wpcharming' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php wpcharming_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->