WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
788 | /** |
789 | * Filters the ORDERBY clause of the terms query. |
790 | * |
791 | * @since 2.8.0 |
792 | * |
793 | * @param string $orderby `ORDERBY` clause of the terms query. |
794 | * @param array $args An array of terms query arguments. |
795 | * @param array $taxonomies An array of taxonomies. |
796 | */ |
797 | $orderby = apply_filters( 'get_terms_orderby', $orderby, $this->query_vars, $this->query_vars['taxonomy'] ); |
798 |
|
799 | // Run after the 'get_terms_orderby' filter for backward compatibility. |
800 | if ( $maybe_orderby_meta ) { |
801 | $maybe_orderby_meta = $this->parse_orderby_meta( $_orderby ); |
802 | if ( $maybe_orderby_meta ) { |
803 | $orderby = $maybe_orderby_meta; |
804 | } |
805 | } |
806 |
|