Browse: Home / Hooks /

learndash_section_fields_after

do_action( 'learndash_section_fields_after',  string $settings_section_key,  string $setting_screen_id )

Fires after the settings section fields.


Description #


Parameters #

$settings_section_key

(string) Settings section key.

$setting_screen_id

(string) Settings screen ID.


Source #

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


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_section_fields_after action.
 */
add_action(
	'learndash_section_fields_after',
	function( $settings_section_key, $setting_screen_id ) {
		// May add any custom logic using $settings_section_key, $setting_screen_id

	},
	10,
	2
);