Browse: Home / Hooks /

learndash_metabox_options_div_inside_bottom

do_action( 'learndash_metabox_options_div_inside_bottom' )

Fires inside the meta box options div at the bottom.


Description #


Source #

File: includes/settings/class-ld-settings-metaboxes.php


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_bottom action.
 */
add_action(
	'learndash_metabox_options_div_inside_bottom',
	function() {

		// Add your custom code here
	}
);