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
$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. |