Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Last active April 4, 2016 18:01
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 thomasplevy/b9822d51d8f03bd9b5093131785b7e78 to your computer and use it in GitHub Desktop.
Save thomasplevy/b9822d51d8f03bd9b5093131785b7e78 to your computer and use it in GitHub Desktop.
Remove Genesis Alternate Sidebar from LifterLMS Course Page
<?php // don't include this line when copying!
/**
* Deregister Genesis sidebar(s) on LifterLMS Course page
*/
function maybe_deregister_sidebars() {
if ( 'course' === get_post_type() ) {
remove_action( 'genesis_sidebar_alt', 'genesis_do_sidebar_alt' );
}
}
add_action( 'wp', 'maybe_deregister_sidebars', 777 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment