XylotrechusZ
<?php
/**
* The template used for displaying page content
*
* @package Zoo Theme
* @version 1.0.0
* @author Zootemplate
* @link https://www.zootemplate.com/
* @copyright Copyright (c) 2017 Zootemplate
*/
if (get_post_meta(get_the_id(), 'zoo_disable_title', true) != 1) {
?>
<h1 class="page-title the-title"><?php the_title(); ?></h1>
<?php
}
if (has_post_thumbnail()) : ?>
<div class="post-media single-image">
<?php the_post_thumbnail('full-thumb'); ?>
</div>
<?php endif; ?>
<div class="page-content">
<?php the_content(); ?>
</div>
<div class="clear-fix"></div>
<?php
//do not remove
get_template_part('inc/templates/pagination', 'detail');
edit_post_link(esc_html__('Edit', 'doma'), '<footer class="entry-footer"><span class="edit-link">', '</span></footer>');