Skip to content

Instantly share code, notes, and snippets.

@damiencarbery
Created October 19, 2020 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damiencarbery/758f92a35ebc6a760a10af248514047f to your computer and use it in GitHub Desktop.
Save damiencarbery/758f92a35ebc6a760a10af248514047f to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Magazine Pro - Hide menu on single posts
Plugin URI: https://www.damiencarbery.com
Description: Hide the After Header Menu when on single posts. Asked on Genesis Facebook group.
Author: Damien Carbery
Version: 0.1
*/
add_action( 'genesis_after_header', 'mp_omit_after_header_menu_on_single_posts', 5 );
function mp_omit_after_header_menu_on_single_posts() {
if ( is_single() ) {
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment