Current File : /home/kelaby89/sixpacksecurity.com.au/wp-content/themes/poket/template-parts/content-page.php |
<?php
/*
single details page
*/
?>
<div class="poket-single-blog-details">
<?php if(has_post_thumbnail()){?>
<div class="poket-single-blog--thumb">
<?php the_post_thumbnail(); ?>
</div>
<?php }
$ptitle = get_post_meta( get_the_ID(),'_txbdm_ptitle', true );
if( $ptitle == 'ptitles' ) {}else{
?>
<div class="poket-single-blog-title">
<h2><?php the_title(); ?></h2>
</div>
<?php
} ?>
<div class="poket-single-blog-content">
<div class="single-blog-content">
<?php the_content();
if ( '' != get_the_content() ) { ?>
<div class="page-list-single">
<?php
/**
* Display In-Post Pagination
*/
wp_link_pages( array(
'link_before' => '<span>',
'link_after' => '</span>',
'before' => '<p class="inner-post-pagination"><span>' . esc_html__('Pages:', 'poket'),
'after' => '</p>'
)); ?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php comments_template();