BBP_Topic_Replies_List_Table::display_tablenav( string $which = '' )

Generate the table navigation above or below the table


Description Description

This custom method is necessary because the one in WP_List_Table comes with a nonce and check that we do not need.


Parameters Parameters

$which

(Optional)

Default value: ''


Top ↑

Source Source

File: includes/admin/classes/class-bbp-topic-replies-list-table.php

	protected function display_tablenav( $which = '' ) {
		?>

		<div class="tablenav <?php echo esc_attr( $which ); ?>">
			<?php
				$this->extra_tablenav( $which );
				$this->pagination( $which );
			?>
			<br class="clear" />
		</div>

		<?php
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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