do_action( 'learndash_settings_page_footer_scripts', string $setting_screen_id, string $setting_page_id )
Fires after settings page footer scripts.
Description #
Parameters #
- $setting_screen_id
-
(string) Settings screen ID.
- $setting_page_id
-
(string) Settings page ID.
Source #
Examples #
<?php /** * Example usage for learndash_settings_page_footer_scripts action. */ add_action( 'learndash_settings_page_footer_scripts', function( $setting_screen_id, $setting_page_id ) { // May add any custom logic using $setting_screen_id, $setting_page_id echo '<div>Custom content or markup</div>'; }, 10, 2 );