Is there any way to remove a header from posts & pages?
-
Hi,
I’m trying to remove the header of my website from the posts & pages because it’s too big and takes up the entire page. I have some basic knowledge of CSS and I’ve searched but can’t seem to find an answer. I saw in the WP Codex you can use this but that doesn’t apply to getting rid of the header so I was wondering if anyone knew how to.
<?php
if ( is_home() ) :
get_header(‘home’);
elseif ( is_404() ) :
get_header(‘404’);
else :
get_header();
endif;
?>Here’s the website: https://basedinwire.com/
Thank you!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Is there any way to remove a header from posts & pages?’ is closed to new replies.