LLMS_Abstract_Generator_Posts::is_reusable_block_importing_enabled()
Determines if reusable block importing is enabled generator
Return Return
(boolean) If true
, importing is enabled, otherwise importing is disabled.
Source Source
File: includes/abstracts/llms-abstract-generator-posts.php
public function is_reusable_block_importing_enabled() { /** * Filter the status of reusable block importing for the generator. * * @since 4.7.0 * * @param boolean $enabled Whether or not block importing is enabled. * @param LLMS_Generator $generator Generator instance. */ return apply_filters( 'llms_generator_is_reusable_block_importing_enabled', true, $this ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |