mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://github.com/gocodebox/snippets/blob/trunk/lifterlms/quizzes/reorder-quiz-question-content.php
8 lines
426 B
Text
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 );
|