LLMS_Abstract_Query::__construct( array $args = array() )
Constructor.
Parameters Parameters
- $args
-
(array) (Optional) Query arguments. When not provided the default arguments will be used.
Default value: array()
Return Return
(void)
Source Source
File: includes/abstracts/llms-abstract-query.php
public function __construct( $args = array() ) {
$this->arguments_original = $args;
$this->arguments_default = $this->get_default_args();
$this->setup_args();
$this->query();
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |