autoship_after_admin_migrations (action)

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

Code

<?php do_action( 'autoship_after_autoship_admin_migrations' ); ?>

Example

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