autoship_after_admin_products (action)

(templates/admin/products.php) Used to add customization after the content of Products page in WP-Admin > Autoship Cloud > Products.

Code

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

Example

function autoship_after_admin_products_example() {
	echo "This will appear after products admin section.";<br>}
add_action( 'autoship_after_admin_products', 'autoship_after_admin_products_example', 10, 0 );