Current File : /home/kelaby89/muzza.fit/wp-content/themes/deadlift/templates/components/post/content-single.php |
<?php
/**
* Template part for displaying single post content
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Deadlift
* @version 1.8.2
*/
?>
<article <?php deadlift_post_attr( 'content-section' ); ?>>
<?php
/**
* Post_content_before hook
*
* @see inc/fontend/hooks.php
* @since 1.0.0
*/
do_action( 'deadlift_post_content_before' );
?>
<div class="single-post-content-container">
<?php
/**
* Post_content_start hook
*
* @see inc/fontend/hooks.php
* @since 1.0.0
*/
do_action( 'deadlift_post_content_start' );
?>
<div class="entry-content clearfix">
<?php
/**
* The post content
*/
the_content();
wp_link_pages( array(
'before' => '<div class="clear"></div><div class="page-links clearfix">' . esc_html__( 'Pages:', 'deadlift' ),
'after' => '</div>',
'link_before' => '<span class="page-number">',
'link_after' => '</span>',
) );
?>
</div><!-- .entry-content -->
<?php
/**
* Post_content_end hook
*
* @see inc/fontend/hooks.php
* @since 1.0.0
*/
do_action( 'deadlift_post_content_end' );
?>
</div><!-- .single-post-content-container -->
<?php
/**
* Post_content_after hook
*
* @see inc/fontend/hooks.php
* @since 1.0.0
*/
do_action( 'deadlift_post_content_after' );
?>
</article>