autoship_after_autoship_admin_logs (action)

(src/templates/admin/logs.php) Allows developers the ability to output custom content after the "Logs" tab content.

Code

do_action( 'autoship_after_autoship_admin_logs' );

Example

function add_to_logger_content(){
	  echo '<h2>Hello World</h2>';
  }
  add_action('autoship_after_autoship_admin_logs', 'add_to_logger_content', 10, 1);