Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: posts_orderby

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
3337
3338                /**
3339                 * Filter the ORDER BY clause of the query.
3340                 *
3341                 * @since 1.5.1
3342                 *
3343                 * @param string   $orderby The ORDER BY clause of the query.
3344                 * @param WP_Query &$this   The WP_Query instance (passed by reference).
3345                 */
3346                $orderby = apply_filters_ref_array( 'posts_orderby', array( $orderby, &$this ) );
3347
3348                /**
3349                 * Filter the DISTINCT clause of the query.
3350                 *
3351                 * @since 2.1.0
3352                 *
3353                 * @param string   $distinct The DISTINCT clause of the query.
3354                 * @param WP_Query &$this    The WP_Query instance (passed by reference).
3355                 */