<?php
/**
* Template part for displaying posts.
*
* @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( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<?php if ( 'post' === get_post_type() ) : ?>
<div class="entry-meta">
<?php education_hub_posted_on(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
$archive_layout = education_hub_get_option( 'archive_layout' );
?>
<?php if ( has_post_thumbnail() ) : ?>
<?php
$archive_image = education_hub_get_option( 'archive_image' );
$archive_image_alignment = education_hub_get_option( 'archive_image_alignment' );
?>
<?php if ( 'disable' !== $archive_image ) : ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( esc_attr( $archive_image ), array( 'class' => 'align'. esc_attr( $archive_image_alignment ) ) ); ?></a>
<?php endif; ?>
<?php endif; ?>
<?php if ( 'full' === $archive_layout ) : ?>
<?php
the_content( sprintf(
/* translators: %s: Name of current post. */
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'education-hub' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );
?>
<?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>',
) );
?>
<?php else : ?>
<?php the_excerpt(); ?>
<?php endif; ?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php education_hub_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->