LLMS_Generator::get_results()

Get the results of the generate function


Description Description


Return Return

(mixed) array of stats or WP_Error


Top ↑

Source Source

File: includes/class.llms.generator.php

	public function get_results() {

		if ( $this->is_error() ) {
			return $this->error;
		} else {
			return $this->stats;
		}

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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