• 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?

  • The topic ‘Stopped working’ is closed to new replies.