do_action( 'learndash_metabox_description_after', string $settings_key )
Fires after the metabox description.
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_description_after action.
*/
add_action(
'learndash_metabox_description_after',
function( $settings_key ) {
// May add any custom logic using $settings_key
}
);