ActionScheduler_Abstract_ListTable::display_header()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_header();

ActionScheduler_Abstract_ListTable::display_header() code WC 8.7.0

protected function display_header() {
	echo '<h1 class="wp-heading-inline">' . esc_attr( $this->table_header ) . '</h1>';
	if ( $this->get_request_search_query() ) {
		/* translators: %s: search query */
		echo '<span class="subtitle">' . esc_attr( sprintf( __( 'Search results for "%s"', 'woocommerce' ), $this->get_request_search_query() ) ) . '</span>';
	}
	echo '<hr class="wp-header-end">';
}