Hi, I have created a child theme and am trying to create a separate header for the home page only.
I have tired lots of different code methods but none are working, not sure what I am doing wrong. Created a page-home.php template and then also created a header-home.php and then added the below at the header of the page template.
if ( is_front_page() ) {
get_header( ‘header-home’ );
} else {
get_header();
} ?>
Thank you for any help!