do_action( 'learndash_metabox_options_div_inside_top', string $settings_key )
Fires inside the meta box options div at the top.
Description #
Parameters #
- $settings_key
-
(string) Settings key used as option name while saving settings.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_metabox_options_div_inside_top action.
*/
add_action(
'learndash_metabox_options_div_inside_top',
function( $settings_key ) {
// May add any custom logic using $settings_key
}
);