LLMS_Post_Model::add_properties( array $props = array() )
Allow extending classes to add custom meta properties to the object
Parameters Parameters
- $props
-
(array) (Optional) Key val array of prop key => prop type (see $this->properties).
Default value: array()
Source Source
File: includes/abstracts/abstract.llms.post.model.php
protected function add_properties( $props = array() ) { $this->properties = array_merge( $this->properties, $props ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.0 | Introduced. |