Browse: Home / Hooks /

learndash_themes_init

do_action( 'learndash_themes_init' )

Fires on initializing a theme.


Description #


Source #

File: themes/class-ld-themes-register.php


Examples #

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

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

		// Add your custom code here
	}
);