Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_link_query_args

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
1325            *
1326            * Allows modification of the link query arguments before querying.
1327            *
1328            * @see WP_Query for a full list of arguments
1329            *
1330            * @since 3.7.0
1331            *
1332            * @param array $query An array of WP_Query arguments.
1333            */
1334           $query = apply_filters( 'wp_link_query_args', $query );
1335
1336           // Do main query.
1337           $get_posts = new WP_Query;
1338           $posts = $get_posts->query( $query );
1339           // Check if any posts were found.
1340           if ( ! $get_posts->post_count )
1341                return false;
1342
1343           // Build results.