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)
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 ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.31.0 | Treat excerpts as HTML instead of plain text. |
3.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: