wp_link_query хук-фильтр . WP 3.7.0
Filters the link query results.
Allows modification of the returned link query results.
Использование
add_filter( 'wp_link_query', 'filter_function_name_4091', 10, 2 ); function filter_function_name_4091( $results, $query ){ // filter... return $results; }
- $results(массив)
An array of associative arrays of query results.
-
...$0(массив)
-
ID(число)
Post ID. -
title(строка)
The trimmed, escaped post title. -
permalink(строка)
Post permalink. - info(строка)
A 'Y/m/d'-formatted date for 'post' post type, the 'singular_name' post type label otherwise.
-
-
- $query(массив)
- An array of WP_Query arguments.
Список изменений
С версии 3.7.0 | Введена. |
Где вызывается хук
wp_link_query
wp-includes/class-wp-editor.php 1810
$results = apply_filters( 'wp_link_query', $results, $query );