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