LLMS_Database_Query::get_results()

Retrieve an array of results for the given query


Description Description


Return Return

(array)


Top ↑

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 );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.