Code-Snippets-Functions/Execute a function on a child site/LifterLMS/reorder-quiz-question-content.txt

8 lines
426 B
Text

function llms_reorder_quiz_actions() {
// First, remove the existing action with its original priority.
remove_action( 'lifterlms_single_question_content', 'lifterlms_template_question_description', 10 );
// Then, re-add the action with the new priority.
add_action( 'lifterlms_single_question_content', 'lifterlms_template_question_description', 35 );
}
add_action( 'plugins_loaded', 'llms_reorder_quiz_actions', 999 );