Is this where you’re meant to be?
// The current header name - allows us to style differently, // based on the first parameter of get_header(); // eg. get_header('no-html'); $current_header_name = apply_filters('current_header', ''); // For logged in users or Pivotal Team members, redirect home // page to the list-projects page if (is_front_page()) { if (is_user_logged_in() || isPivotalUser()) { header('Location: /list-projects'); } } ?>