Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shaunpalmer/7771079b74b7ce8365efa328fc4832cf to your computer and use it in GitHub Desktop.
Save shaunpalmer/7771079b74b7ce8365efa328fc4832cf to your computer and use it in GitHub Desktop.
<?php
function add_custom_header() {
if (is_front_page() || is_home()) {
?>
<header id="custom-header">
<!-- Your custom header content here -->
</header>
<?php
}
}
add_action('wp_head', 'add_custom_header');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment