Browse: Home / Hooks /

learndash_settings_pages_init

do_action( 'learndash_settings_pages_init' )

Fires on LearnDash setting pages init.


Description #


Source #

File: includes/class-ld-lms.php


Examples #

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

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

		// Add your custom code here
	}
);