autoship_before_admin_migrations (action)

(templates/admin/migrations.php) Used to add customization before the content of the Migrations tab in  WP-Admin > Autoship Cloud > Settings > Migrations.

Code

do_action( 'autoship_before_autoship_admin_migrations' );

Example

function autoship_before_admin_migrations_example() {
	echo "This will appear before the migrations admin section.";<br>}
add_action( 'autoship_before_admin_migrations', 'autoship_before_admin_migrations_example', 10, 0 );