LLMS_Post_Model::get_post_properties()

Retrieve an array of post properties These properties need to be get/set with alternate methods


Description Description


Return Return

(array)


Top ↑

Source Source

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

	protected function get_post_properties() {
		return apply_filters( 'llms_post_model_get_post_properties', array(
			'author' => 'absint',
			'content' => 'html',
			'date' => 'text',
			'excerpt' => 'html',
			'menu_order' => 'absint',
			'modified' => 'text',
			'name' => 'text',
			'status' => 'text',
			'title' => 'text',
			'type' => 'text',
		), $this );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.31.0 Treat excerpts as HTML instead of plain text.
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: