LLMS_Abstract_Generator_Posts::get_default_post_status()
Retrieve the default post status for the generated set of posts
Return Return
(string)
Source Source
File: includes/abstracts/llms-abstract-generator-posts.php
public function get_default_post_status() { /** * Filter the default status used for generating posts * * @since 3.7.3 * * @param string $post_status The default post status. * @param LLMS_Generator $generator Generator instance. */ return apply_filters( 'llms_generator_default_post_status', $this->default_post_status, $this ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.7.0 | Moved from LLMS_Generators . |
3.7.3 | |
3.30.2 | Introduced. |