autoship_admin_before_tax_rates (action)
(templates/admin/tax-rates.php) Used to add customization before the Tax Rates Widget is rendered in WP-Admin > Autoship Cloud > Tax Rates.
Code
<?php do_action( 'autoship_before_autoship_admin_tax_rates' ); ?>
Example
function autoship_before_admin_tax_rates_example() { echo "This will appear before the tax rates admin widget.";<br>} add_action( 'autoship_before_admin_tax_rates', 'autoship_before_admin_tax_rates_example', 10, 0 );