LLMS_Abstract_Posts_Query::perform_query()
Performs the query.
Contents
Return Return
(WP_Post[]|int[]) Array of results corresponding to the value specified in the $fields
query argument.
Source Source
File: includes/abstracts/llms-abstract-posts-query.php
protected function perform_query() { $this->wp_query = new WP_Query( $this->query ); return $this->wp_query->posts; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |