LLMS_Database_Query::perform_query()
Performs the SQL query.
Contents
Return Return
(array) An integer-keyed array of row objects.
Source Source
File: includes/abstracts/abstract.llms.database.query.php
protected function perform_query() { global $wpdb; return $wpdb->get_results( $this->query ); // phpcs:ignore: WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |