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
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | $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. |