autoship_after_admin_scheduled_orders (action)

(templates/admin/scheduled-orders.php) Used to add customization after the Scheduled Orders widget renders in  WP-Admin > Autoship Cloud > Scheduled Orders.

Code

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

Function

function autoship_after_admin_scheduled_orders_example() {
	echo "This will appear after the Scheduled Orders admin widget.";<br>}
add_action( 'autoship_after_admin_scheduled_orders', 'autoship_after_admin_scheduled_orders_example', 10, 0 );