Is the_content() not working on your single post type? All you may need is to wrap the_content() function with your post’s loop.
2 answers
1
Making the_content() work on post types
If your the_content() function is not working, try to wrap this with the post’s loop using a while loop.
while ( have_posts() ) : the_post(); the_content(); endwhile();
— Support WizardAnswer 1
0
the_content() with custom post types
To use a custom post type, you need to feed your arguments into the loop as per this guide.
— Support WizardAnswer 2