LLMS_Generator::get_results()
Get the results of the generate function
Description Description
Return Return
(mixed) array of stats or WP_Error
Source Source
File: includes/class.llms.generator.php
public function get_results() { if ( $this->is_error() ) { return $this->error; } else { return $this->stats; } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |