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 |
---|---|
1658 | * |
1659 | * Allows modification of the link query arguments before querying. |
1660 | * |
1661 | * @see WP_Query for a full list of arguments |
1662 | * |
1663 | * @since 3.7.0 |
1664 | * |
1665 | * @param array $query An array of WP_Query arguments. |
1666 | */ |
1667 | $query = apply_filters( 'wp_link_query_args', $query ); |
1668 |
|
1669 | // Do main query. |
1670 | $get_posts = new WP_Query; |
1671 | $posts = $get_posts->query( $query ); |
1672 |
|
1673 | // Build results. |
1674 | $results = array(); |
1675 | foreach ( $posts as $post ) { |
1676 | if ( 'post' == $post->post_type ) { |