do_action( 'learndash_settings_page_after_form', string $setting_screen_id, string $setting_page_id )
Fires after the settings page form.
Contents
Description #
Parameters #
- $setting_screen_id
-
(string) Settings screen ID.
- $setting_page_id
-
(string) Settings page ID.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_settings_page_after_form action.
*/
add_action(
'learndash_settings_page_after_form',
function( $setting_screen_id, $setting_page_id ) {
// May add any custom logic using $setting_screen_id, $setting_page_id
},
10,
2
);