Is it possible to have a COMPLETELY blank page to enter some HTML into? I want to make a landing page without the header.
Hi,
You can use a child theme and create a template-blank.php file with the following code inside:
<?php
/**
* Template Name: Blank
*/
the_post();
the_content();
Then, you will be able to select Blank in WordPress Dashboard > Plages for new pages.
I hope this is helpful to you.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.