Last active
June 20, 2019 07:13
-
-
Save eri-trabiccolo/5ab95212a85a6624d59f865f55c5f065 to your computer and use it in GitHub Desktop.
Show LLMS quiz and question post type UI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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