wp_link_query

过滤钩子
apply_filters( 'wp_link_query', $results, $query )
参数
  • (array) $results { An array of associative arrays of query results. @type array ...$0 { @type int $ID Post ID. @type string $title The trimmed, escaped post title. @type string $permalink Post permalink. @type string $info A 'Y/m/d'-formatted date for 'post' post type, the 'singular_name' post type label otherwise. } }
    Required:
  • (array) $query An array of WP_Query arguments.
    Required:
定义位置
相关勾子
wp_link_query_argspost_link_categorywp_login_errorsparse_network_queryparse_site_query
相关方法
wp_login_urlis_main_querywp_link_pages_wp_link_pagewp_list_userswp_reset_query
引入
3.7.0
弃用
-

wp_link_query:这是 WordPress 内置的一个函数,用于执行链接查询。它可以在 WordPress 后台的链接页面中查询所有的链接。

过滤链接查询结果。

允许修改返回的链接查询结果。

$results = apply_filters( 'wp_link_query', $results, $query );

常见问题

FAQs
查看更多 >