users_network_per_page хук-фильтрWP 2.9.0

Filters the number of items to be displayed on each page of the list table.

The dynamic hook name, $option, refers to the per_page option depending on the type of list table in use. Possible filter names include:

Это один из вариантов динамического хука (option)

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

add_filter( 'users_network_per_page', 'wp_kama_users_network_per_page_filter' );

/**
 * Function for `users_network_per_page` filter-hook.
 * 
 * @param int $per_page Number of items to be displayed.
 *
 * @return int
 */
function wp_kama_users_network_per_page_filter( $per_page ){

	// filter...
	return $per_page;
}
$per_page(int)
Number of items to be displayed.
По умолчанию: 20

Список изменений

С версии 2.9.0 Введена.

Где вызывается хук

WP_List_Table::get_items_per_page()
users_network_per_page
wp-admin/includes/class-wp-list-table.php 1013
return (int) apply_filters( "{$option}", $per_page );

Где используется хук в WordPress

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