Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created September 26, 2018 19:39
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/b1a358f8b38155dcf05de2a66452bf86 to your computer and use it in GitHub Desktop.
Save thomasplevy/b1a358f8b38155dcf05de2a66452bf86 to your computer and use it in GitHub Desktop.
<?php // don't copy this line if pasting into a functions.php file
add_filter( 'lifterlms_register_post_type_lesson', 'my_show_lessons_in_rest' );
function my_show_lessons_in_rest( $args ) {
$args['show_in_rest'] = true;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment