Hi Kevin,
In that case, within your /wp-content/themes/nameofthemehere/ directory, you would create a file lead_page.php … (you can name it whatever just make sure it ends with dot + php) and then within that file you would do something like so;
/* Template Name: Lead Page */
save the file at this point, then paste whatever HTML code or WordPress loop you want to put into it. As you notice or would notice looking at all other template files, our lead_page.php file/page doesn’t have <?php get_header(); ?> nor <?php get_footer(); ?> within it, which is as it states, it gets the header.php file and the footer.php file.
Then in WordPress dashboard go to `Pages -> Edit or Add New’ create your page, and on the right hand side under ‘Templates’, from the drop down you will see our “Lead Page”, select that and you should be all set.
Of course after the;
/* Template Name: Lead Page */
You can enter anything and everything, whatever you enter will be displayed only on a page that has that template selected -> “Lead Page”.
Make sense? 🙂 Hope that helps.