do_action( 'learndash_settings_page_inside_form_top', string $setting_screen_id, string $setting_page_id )
Fires inside settings page form in the top.
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_inside_form_top action. */ add_action( 'learndash_settings_page_inside_form_top', function( $setting_screen_id, $setting_page_id ) { // May add any custom logic using $setting_screen_id, $setting_page_id }, 10, 2 );