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 |
---|---|
882 | /** |
883 | * Filters the ORDERBY clause of the terms query. |
884 | * |
885 | * @since 2.8.0 |
886 | * |
887 | * @param string $orderby `ORDERBY` clause of the terms query. |
888 | * @param array $args An array of term query arguments. |
889 | * @param string[] $taxonomies An array of taxonomy names. |
890 | */ |
891 | $orderby = apply_filters( 'get_terms_orderby', $orderby, $this->query_vars, $this->query_vars['taxonomy'] ); |
892 |
|
893 | // Run after the 'get_terms_orderby' filter for backward compatibility. |
894 | if ( $maybe_orderby_meta ) { |
895 | $maybe_orderby_meta = $this->parse_orderby_meta( $_orderby ); |
896 | if ( $maybe_orderby_meta ) { |
897 | $orderby = $maybe_orderby_meta; |
898 | } |
899 | } |
900 |
|