Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_limits_request

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3151                 * Filter the LIMIT clause of the query.
3152                 *
3153                 * For use by caching plugins.
3154                 *
3155                 * @since 2.5.0
3156                 *
3157                 * @param string   $limits The LIMIT clause of the query.
3158                 * @param WP_Query &$this  The WP_Query instance (passed by reference).
3159                 */
3160                $limits = apply_filters_ref_array( 'post_limits_request', array( $limits, &$this ) );
3161
3162                /**
3163                 * Filter all query clauses at once, for convenience.
3164                 *
3165                 * For use by caching plugins.
3166                 *
3167                 * Covers the WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT,
3168                 * fields (SELECT), and LIMITS clauses.
3169                 *