????
| Current Path : /home2/morganrand/public_html/sub/wp-content/themes/writee/inc/theme/layouts/grid/ |
| Current File : /home2/morganrand/public_html/sub/wp-content/themes/writee/inc/theme/layouts/grid/content.php |
<?php
/*******************************************************/
## grid style standard post layout view
/*******************************************************/
global $post;
$post_excerpt_status = get_theme_mod('wrt_blog_post_excerpt', 'enable');
?>
<article id="entry-<?php echo $post->ID; ?>" <?php post_class(); echo 'style="text-align:center;"';?>>
<?php writee_featured_image($post->ID, 'WRT-post-image'); ?>
<?php get_template_part('inc/theme/views/content-post-header'); ?>
<div class="entry-content">
<?php
if ($post_excerpt_status == 'enable'):
the_excerpt();
else:
the_content( '' );
endif;
?>
</div>
<?php get_template_part('inc/theme/views/content-post-footer'); ?>
</article>