autoship_before_admin_scheduled_orders (action)
(templates/admin/scheduled-orders.php) Used to add customization before the Scheduled Orders widget renders in WP-Admin > Autoship Cloud > Scheduled Orders.
Code
<?php do_action( 'autoship_before_autoship_admin_scheduled_orders' ); ?>
Function
function autoship_before_admin_scheduled_orders_example() { echo "This will appear before the Scheduled Orders admin widget.";<br>} add_action( 'autoship_before_admin_scheduled_orders', 'autoship_before_admin_scheduled_orders_example', 10, 0 );