LLMS_Abstract_Generator_Posts::is_image_sideloading_enabled()

Determines if image sideloading is enabled for the generator


Return Return

(boolean) If true, sideloading is enabled, otherwise sideloading is disabled.


Top ↑

Source Source

File: includes/abstracts/llms-abstract-generator-posts.php

	public function is_image_sideloading_enabled() {

		/**
		 * Filter the status of image sideloading for the generator.
		 *
		 * @since 4.7.0
		 *
		 * @param boolean        $enabled   Whether or not sideloading is enabled.
		 * @param LLMS_Generator $generator Generator instance.
		 */
		return apply_filters( 'llms_generator_is_image_sideloading_enabled', true, $this );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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