post_limits_request
Filters the LIMIT clause of the query.
For use by caching plugins.
Использование
add_filter( 'post_limits_request', 'wp_kama_post_limits_request_filter', 10, 2 ); /** * Function for `post_limits_request` filter-hook. * * @param string $limits The LIMIT clause of the query. * @param WP_Query $query The WP_Query instance (passed by reference). * * @return string */ function wp_kama_post_limits_request_filter( $limits, $query ){ // filter... return $limits; }
- $limits(строка)
- The LIMIT clause of the query.
- $query(WP_Query)
- The WP_Query instance (passed by reference).
Список изменений
С версии 2.5.0 | Введена. |
Где вызывается хук
post_limits_request
wp-includes/class-wp-query.php 2968
$limits = apply_filters_ref_array( 'post_limits_request', array( $limits, &$this ) );