LLMS_Abstract_Generator_Posts::get_default_post_status()

Retrieve the default post status for the generated set of posts


Return Return

(string)


Top ↑

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

	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Moved from LLMS_Generators.
3.7.3
3.30.2 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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