ActionScheduler_Abstract_ListTable::display_admin_notices()protectedWC 1.0

Display the table heading and search query, if any

Method of the class: ActionScheduler_Abstract_ListTable{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->display_admin_notices();

ActionScheduler_Abstract_ListTable::display_admin_notices() code WC 8.7.0

protected function display_admin_notices() {
	foreach ( $this->admin_notices as $notice ) {
		echo '<div id="message" class="' . esc_attr( $notice['class'] ) . '">';
		echo '	<p>' . wp_kses_post( $notice['message'] ) . '</p>';
		echo '</div>';
	}
}