ActionScheduler_Abstract_ListTable::display_header()protectedWC 1.0

Display the table heading and search query, if any

Метод класса: ActionScheduler_Abstract_ListTable{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->display_header();

Код ActionScheduler_Abstract_ListTable::display_header() 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">';
}