Skip to content

Instantly share code, notes, and snippets.

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/f78db248be1b3a58dbe0a1e73fc5d804 to your computer and use it in GitHub Desktop.
Save thomasplevy/f78db248be1b3a58dbe0a1e73fc5d804 to your computer and use it in GitHub Desktop.
Remove the Genesis Secondary Sidebar on LifterLMS Lesson Pages
<?php // don't include this line when copying!
/**
* Deregister Genesis sidebar(s) on LifterLMS Lesson page
*/
function maybe_deregister_sidebars() {
if ( 'lesson' === 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