LLMS_Query_User_Postmeta::get_default_args()
Retrieve default arguments for a student query
Return Return
(array)
Source Source
File: includes/class.llms.query.user.postmeta.php
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | $args = array ( 'include_post_children' => true, 'query' => array (), 'query_compare' => 'OR' , 'post_id' => array (), 'sort' => array ( 'updated_date' => 'DESC' , 'meta_id' => 'ASC' , ), 'types' => array (), 'user_id' => array (), ); $args = wp_parse_args( $args , parent::get_default_args() ); return apply_filters( $this ->get_filter( 'default_args' ), $args ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.15.0 | Introduced. |