Browse: Home / Hooks /

learndash_data_upgrades_init

do_action( 'learndash_data_upgrades_init' )

Fires on admin data upgrades init


Description #


Source #

File: includes/admin/class-learndash-admin-data-upgrades.php


Examples #

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

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

		// Add your custom code here
	}
);
 

Changelog #

Changelog
Version Description
2.6.0 Introduced.