Viewing File: /home/maglabs/2vsa/wp-content/themes/cargohub/parts/content-single.php
<?php
/**
* @package CargoHub
*/
$size = 'cargohub-blog-thumb';
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<div class="entry-thumbnail">
<?php the_post_thumbnail( $size ) ?>
<div class="entry-time">
<span class="day"><?php echo get_the_date( 'd' ) ?></span>
<span class="month"><?php echo get_the_date( 'M' ) ?></span>
</div>
</div>
<div class="entry-meta clearfix">
<?php cargohub_entry_meta() ?>
</div><!-- .entry-meta -->
<h2 class="entry-title"><?php the_title() ?></h2>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'cargohub' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-footer clearfix">
<?php if ( cargohub_get_option( 'single_social_share' ) == true ) cargohub_social_share(); ?>
<?php cargohub_post_nav(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->
Back to Directory
File Manager