ActionScheduler_Abstract_ListTable::display_header()
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() ActionScheduler Abstract ListTable::display header code WC 9.3.3
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">'; }