File: /home/slyfwmm/pianob/wp-content/themes/zk-monaco/single-templates/single/content.php
<?php
/**
* The default template for displaying content
*
* Used for both single and index/archive/search.
*
* @package ZookaStudio
* @subpackage Monaco
* @since 1.0.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('single-post'); ?>>
<?php if(has_post_thumbnail()) {?>
<div class="entry-media entry-feature-image"><?php the_post_thumbnail( 'blog-grid' ); ?></div>
<?php } ?>
<div class="entry-header">
<h2 class="entry-title"><?php the_title(); ?></h2>
<div class="entry-meta cms-blog-meta cms-meta"><?php cms_standard_blog_detail(); ?></div>
</div>
<!-- .entry-header -->
<div class="entry-content">
<?php the_content();
wp_link_pages( array(
'before' => '<div class="pagination loop-pagination"><span class="page-links-title">' . esc_html__( 'Pages:', 'zk-monaco' ) . '</span>',
'after' => '</div>',
'link_before' => '<span class="page-numbers">',
'link_after' => '</span>',
) );
?>
</div>
<!-- .entry-content -->
<footer class="entry-footer clearfix">
<?php cms_get_socials_share(); ?>
<?php cms_single_tag(); ?>
</footer>
<!-- .entry-meta -->
</article>
<!-- #post -->