do_action( 'learndash_metabox_options_div_after', string $settings_key )
Fires after the meta box options div.
Contents
Description #
Parameters #
- $settings_key
-
(string) Settings key used as option name while saving settings.
Source #
Examples #
<?php /** * Example usage for learndash_metabox_options_div_after action. */ add_action( 'learndash_metabox_options_div_after', function( $settings_key ) { // May add any custom logic using $settings_key echo '<div>Custom content or markup</div>'; } );