Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Last active June 20, 2019 07:13
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 eri-trabiccolo/5ab95212a85a6624d59f865f55c5f065 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/5ab95212a85a6624d59f865f55c5f065 to your computer and use it in GitHub Desktop.
Show LLMS quiz and question post type UI
<?php //<- don' copy this whole line!
// Copy from under this line and paste into your child theme's functions.php or in the LifterLMS Customization plugin
add_filter( 'register_post_type_args', 'my_llms_show_quiz_questions_ui', 10, 2 );
function my_llms_show_quiz_questions_ui( $args, $post_type ) {
if ( in_array( $post_type, array( 'llms_quiz', 'llms_question' ) ) ) {
$args['show_ui'] = true;
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment