LLMS_Database_Query::get_results()
Retrieve an array of results for the given query
Description Description
Return Return
(array)
Source Source
File: includes/abstracts/abstract.llms.database.query.php
public function get_results() { if ( $this->get( 'suppress_filters' ) ) { return $this->results; } return apply_filters( $this->get_filter( 'get_results' ), $this->results ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |