Hey Jarret,
The process I used before 2020, I had created a page (copied for page.php), say page-about-us.php and inside the loop of that page;
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content-about-us', 'about-us' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile; // End of the loop.
==========================================================================
Then from the above get_template_part( ‘template-parts/content/content-about-us’, ‘about-us’ );
I created a content-about-us.php (copied from content.php)
From inside that file I could hard code within the the <div class=”entry-content”> </div> Perfect!.
This I could write my own Html or copy and paste from the code editor in past 2019 theme, Giving me custom pages and hard coded content.
This i could allocate a custom page template for various pages within WordPress, with the hard coded content.
=====================================================================================
With 2020, id does not come with page.php to copy, neither is there template-parts/Content/content.php to recreate.
I have tried creating page.php as in 2019, sending the loop to content folder and files but it does not work. The file structure seams to have completely changed.
What a headaches I have built so many websites hard coded prior to 2020. I know there probably will be a simple solution, so If anyone could advise that would be great.