Tribe__Customizer::shortcode_inline_style()

Print the CSS for the customizer for shortcodes.

Contents


Source

File: src/Tribe/Customizer.php

	public function shortcode_inline_style() {
		/**
		 * Whether customizer styles should print for shortcodes or not.
		 *
		 * @since 4.12.6
		 *
		 * @param boolean $should_print Whether the inline styles should be printed on screen.
		 */
		$should_print = apply_filters( 'tribe_customizer_should_print_shortcode_customizer_styles', false );

		if ( empty( $should_print ) ) {
			return;
		}

		$this->inline_style();
	}

Top ↑

Changelog

Changelog
Version Description
4.12.6 Introduced.