do_action( 'learndash_admin_tabs_set' )
Fires after admin tabs are set.
Description #
Source #
File: sfwd-lms/includes/admin/class-learndash-admin-menus-tabs.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_admin_tabs_set action.
*/
add_action(
'learndash_admin_tabs_set',
function() {
// Add your custom code here
}
);