Yes, that’s what I’ve been trying to do but I’m not sure whether this type of code works with my theme and/or where to copy-paste it. Please find my code below.
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php integer_entry_meta_before_title(); ?>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
<?php integer_entry_meta_before_content(); ?>
<?php integer_post_thumbnail(); ?>
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages(
array(
'before' => '<div class="page-links">' . __( 'Pages:', 'integer' ),
'after' => '</div>',
)
);
?>
</div>
<?php integer_entry_footer_widgets(); ?>
<?php integer_entry_meta_after_content(); ?>
</article>
Thanks for your help.