wp_link_query
Filters the link query results.
Allows modification of the returned link query results.
Usage
add_filter( 'wp_link_query', 'wp_kama_link_query_filter', 10, 2 );
/**
* Function for `wp_link_query` filter-hook.
*
* @param array $results An array of associative arrays of query results.
* @param array $query An array of WP_Query arguments.
*
* @return array
*/
function wp_kama_link_query_filter( $results, $query ){
// filter...
return $results;
}
- $results(array)
An array of associative arrays of query results.
-
...$0(array)
-
ID(int)
Post ID. -
title(string)
The trimmed, escaped post title. -
permalink(string)
Post permalink. - info(string)
A 'Y/m/d'-formatted date for 'post' post type, the 'singular_name' post type label otherwise.
-
-
- $query(array)
- An array of WP_Query arguments.
Changelog
| Since 3.7.0 | Introduced. |
Where the hook is called
wp_link_query
wp-includes/class-wp-editor.php 1858
$results = apply_filters( 'wp_link_query', $results, $query );