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
124 125 126 127 128 129 130 131 132 133 | 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. |