This worked, then stopped working:
<?php
if ( is_front_page() ) :
get_header('home');
else :
get_header();
wp_reset_query();
endif;
?>
This doesn't even call header-home.php either:
<?php get_header('home'); ?>
What could be wrong?
This worked, then stopped working:
<?php
if ( is_front_page() ) :
get_header('home');
else :
get_header();
wp_reset_query();
endif;
?>
This doesn't even call header-home.php either:
<?php get_header('home'); ?>
What could be wrong?
You must log in to post.