<?php
/**
* Template part for displaying page content in page.php.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Education_Hub
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
/**
* Hook - education_hub_single_image.
*
* @hooked education_hub_add_image_in_single_display - 10
*/
do_action( 'education_hub_single_image' );
?>
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span>' . esc_html__( 'Pages:', 'education-hub' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php edit_post_link( esc_html__( 'Edit', 'education-hub' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->