XylotrechusZ
<?php
/**
* @author rs-theme
* @since 1.0
* @version 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php
if ( is_singular() ) :
the_title( '<h1 class="entry-title">', '</h1>' );
else :
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
endif;
if ( 'post' === get_post_type() ) : ?>
<div class="entry-meta">
<?php dabble_posted_on(); ?>
</div><!-- .entry-meta -->
<?php
endif; ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="nav-links">' . esc_html__( 'Pages:', 'dabble' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<div class="entry-footer">
<?php dabble_entry_footer(); ?>
</div><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->