WC_Admin_Webhooks_Table_List::display_tablenav( string $which )

Generate the table navigation above or below the table.


Description Description

Included to remove extra nonce input.


Parameters Parameters

$which

(Required) The location of the extra table nav markup: 'top' or 'bottom'.


Top ↑

Source Source

File: includes/admin/class-wc-admin-webhooks-table-list.php

	protected function display_tablenav( $which ) {
		echo '<div class="tablenav ' . esc_attr( $which ) . '">';

		if ( $this->has_items() ) {
			echo '<div class="alignleft actions bulkactions">';
			$this->bulk_actions( $which );
			echo '</div>';
		}

		$this->extra_tablenav( $which );
		$this->pagination( $which );
		echo '<br class="clear" />';
		echo '</div>';
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.