{ Menu quick search arguments. @type boolean $no_found_rows Whether to return found rows data. Default true. @type boolean $update_post_meta_cache Whether to update post meta cache. Default false. @type boolean $update_post_term_cache Whether to update post term cache. Default false. @type int $posts_per_page Number of posts to return. Default 10. @type string $post_type Type of post to return. @type string $s Search query. @type array $search_columns Which post table columns to query.}
106* @type int$posts_per_page Number of posts to return.Default10.107* @type string$post_type Type of post to return.108* @type string$s Search query.109* @type array$search_columns Which post table columns to query.110*}111*/112$query_args=apply_filters('wp_ajax_menu_quick_search_args',$query_args);113$args=array_merge($args,$query_args);114115if(isset($post_type_obj->_default_query)){116$args=array_merge($args,(array)$post_type_obj->_default_query);117}118
History
Introduced in 6.9.0. Unchanged from 6.9.7 through 7.1.0.