Hi John
this looks exactly like the issue that I have on my site and which I posted about earlier in the week 404 errors navigating from Calendar event list . Is this an change to the existing code block in content-page.php (below) or an additional code block within it? Would it be possible to share the entire code segment to be sure of what needs to be amended.
Many thanks
John
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( ! is_single() ) { ?>“><?php } ?>
<header class=”entry-header”>
<?php if ( has_post_thumbnail() ) { ?>
<div class=”entry-thumbnail”>
<?php the_post_thumbnail( ‘large’ ); ?>
</div>
<?php } ?>
<?php the_title( ‘<h1 class=”entry-title”>’, ‘</h1>’ ); ?>
</header><!– .entry-header –>
<?php if ( ! is_single() ) { ?><?php } ?>
<div class=”entry-content”>
<?php the_content(); ?>
<?php
wp_link_pages( array(
‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘rookie’ ),
‘after’ => ‘</div>’,
) );
?>
</div><!– .entry-content –>
</article><!– #post-## –>