Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Created August 1, 2014 07:33
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 hlashbrooke/ecd542926eb1fc245bef to your computer and use it in GitHub Desktop.
Save hlashbrooke/ecd542926eb1fc245bef to your computer and use it in GitHub Desktop.
Sensei: Give editors access to all courses & lessons on the frontend
<?php
add_filter( 'sensei_all_access', 'sensei_editor_access' );
function sensei_editor_access( $access ) {
if( current_user_can( 'editor' ) ) {
$access = true;
}
return $access;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment