LLMS_Query_User_Postmeta::get_metas()
Retrieve an array of LLMS_User_Postmetas for the given set of results
Return Return
(array)
Source Source
File: includes/class.llms.query.user.postmeta.php
$metas = array();
$results = $this->get_results();
if ( $results ) {
foreach ( $results as $result ) {
$metas[] = new LLMS_User_Postmeta( $result->meta_id );
}
}
if ( $this->get( 'suppress_filters' ) ) {
return $metas;
}
return apply_filters( $this->get_filter( 'get_metas' ), $metas );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.15.0 | Introduced. |