Reply To: CPT single post

Home Forums Support CPT single post Reply To: CPT single post

Home Forums Support CPT single post Reply To: CPT single post

#229136
Jasper

I added your code to the single.cpt.php but no luck, maybe it is in the wrong spot?

here is the whole file:

<?php
/**
 * The Template for displaying all single posts.
 *
 * @package GeneratePress
 */
 
// No direct access, please
if ( ! defined( 'ABSPATH' ) ) exit;

get_header(); ?>

	<div id="primary" <?php generate_content_class();?>>
		<main id="main" <?php generate_main_class(); ?>>
		<?php do_action('generate_before_main_content'); ?>
		<?php while ( have_posts() ) : the_post(); ?>

			<?php get_template_part( 'content', 'single' ); ?>
<?php
  wp_link_pages( array(
    'before' => '<div class="page-links">' . __( 'Pages:', 'generatepress' ),
    'after'  => '</div>',wp_link_pages
  ) );
?>
			<?php
				// If comments are open or we have at least one comment, load up the comment template
				if ( comments_open() || '0' != get_comments_number() ) : ?>
					<div class="comments-area">
						<?php comments_template(); ?>
					</div>
			<?php endif; ?>

		<?php endwhile; // end of the loop. ?>
		<?php do_action('generate_after_main_content'); ?>
		</main><!-- #main -->
	</div><!-- #primary -->

<?php 
do_action('generate_sidebars');
get_footer();