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
1648            *
1649            * Allows modification of the link query arguments before querying.
1650            *
1651            * @see WP_Query for a full list of arguments
1652            *
1653            * @since 3.7.0
1654            *
1655            * @param array $query An array of WP_Query arguments.
1656            */
1657           $query = apply_filters( 'wp_link_query_args', $query );
1658
1659           // Do main query.
1660           $get_posts = new WP_Query;
1661           $posts     = $get_posts->query( $query );
1662
1663           // Build results.
1664           $results = array();
1665           foreach ( $posts as $post ) {
1666                if ( 'post' == $post->post_type ) {