qsm_extra_setting_fields
-
Hello Team,
below code is not working, i wanted to create custom field in option page of QSM plugin using “qsm_extra_setting_fields” hook
Here is my code, please give me solution regarding below code
function qsm_percentage_field(){ global $mlwQuizMasterNext; $field_array = array( 'id' => 'passing_percentage', 'label' => __( 'Passing Percentage', 'quiz-master-next' ), 'type' => 'number', 'default' => isset( get_option( 'qsm-quiz-settings' )['passing_percentage'] ) ? get_option( 'qsm-quiz-settings' )['passing_percentage'] : 70, 'help' => __( 'Set passing percentage', 'quiz-master-next' ), ); $mlwQuizMasterNext->pluginHelper->register_quiz_setting( $field_array, 'quiz_options' ); } add_action('qsm_extra_setting_fields', 'qsm_percentage_field');
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘qsm_extra_setting_fields’ is closed to new replies.