Browse: Home / Hooks /

learndash_settings_page_before_content

do_action( 'learndash_settings_page_before_content' )

Fires before settings page content.


Description #


Source #

File: includes/admin/class-learndash-admin-settings-data-reports.php


Examples #

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

 <?php
/**
 * Example usage for learndash_settings_page_before_content action.
 */
add_action(
	'learndash_settings_page_before_content',
	function() {

		// Add your custom code here
	}
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.