Custom Page Template
-
I am trying to create a custom php page template that doesn’t display the header or sidebars (basically a static sales page that is blank). I couldn’t find any plugins for this but I did find a great post with some code Im using that is doing part of the job. Here’s the code im using (UPLOADED TO MY THEMES FOLDER):
<?php
/*
Template Name: Headerless
*/
get_header(‘less’); ?><div id=”main”>
<div id=”content”><!— change this to do what the template is supposed to do –>
</div><!– /content –>
<?php // don’t get_sidebar(); ?>
</div><!– /main –>
<?php get_footer(); ?>I want to also remove ALL navigation. Heres the page currently:
Thank you for your time!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Page Template’ is closed to new replies.