<?php /** * Template part for displaying posts. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Theme Palace * @subpackage Businesszen * @since Businesszen 1.0.0 */ $options = businesszen_get_theme_options(); $class = has_post_thumbnail() ? '' : 'no-post-thumbnail'; ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'clear ' . $class ); ?>> <div class="featured-image"> <a href="<?php the_permalink(); ?>"><img src="<?php the_post_thumbnail_url( 'large' ) ?>" alt="<?php the_title_attribute(); ?>"></a> </div> <div class="entry-meta"> <?php echo businesszen_author_meta(); ?> <?php if ( $options['single_post_hide_date'] == false ) : ?> <?php businesszen_posted_on(); ?> <?php endif; ?> </div><!-- .entry-meta --> <div class="entry-container"> <div class="entry-content"> <?php the_content( sprintf( /* translators: %s: Name of current post. */ wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'businesszen' ), array( 'span' => array( 'class' => array() ) ) ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) ) ); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'businesszen' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> </div><!-- .entry-container --> <div class="entry-meta"> <?php businesszen_entry_footer(); ?> </div><!-- .entry-meta --> </article>