autoship_after_autoship_admin_payment_integrations (action)

(templates/admin/payment-integrations.php) Used to add customization after the Payment Integration widget renders in   WP-Admin > Autoship Cloud > Payment Integrations.

Code

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

Example

function autoship_after_admin_payment_integrations_example() {
	echo "This will appear after the payment integrations admin widget.";<br>}
add_action( 'autoship_after_admin_payment_integrations', 'autoship_after_admin_payment_integrations_example', 10, 0 );