如何从WordPress中的页面模板中删除页眉和页脚,但保持样式

I've just created a new page template in WordPress, starting from the default code in page.php. For the new template, I want to remove the footer and header information (logo, menu, etc), while keeping all the other properties of the default template. How can I do this?

When I remove

<?php get_footer(); ?>

from the new template, the footer disappears, which is okay, I guess.

But when I remove

<?php get_header(); get_template_part('templates/page', 'header'); ?>

all the styling disappears together with the header. Plus I'm left with a padding all around the page and the page name is gone too. How can I remove the header and the padding while keeping the old styling?

Thanks!

You can create new header and footer files, say "header-mytemplate.php" and "footer-mytemplate.php". Create what ever structure you want into it. And in your new tempalte call these header and footer, like this get_header('mytemplate'); and get_footer(mytemplate);.

This will get the newly created header and footer. You can customize these header and footer files as you like.

Hope this helps.