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()


Top ↑

Source Source

File: includes/abstracts/abstract.llms.post.model.php

	protected function add_properties( $props = array() ) {

		$this->properties = array_merge( $this->properties, $props );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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