LLMS_Abstract_Posts_Query::perform_query()

Performs the query.


Return Return

(WP_Post[]|int[]) Array of results corresponding to the value specified in the $fields query argument.


Top ↑

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;

	}

Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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