WC_Frontend_Scripts::localize_printed_scripts()public staticWC 1.0

Localize scripts only when enqueued.

Method of the class: WC_Frontend_Scripts{}

No Hooks.

Return

null. Nothing.

Usage

$result = WC_Frontend_Scripts::localize_printed_scripts();

WC_Frontend_Scripts::localize_printed_scripts() code WC 7.5.0

public static function localize_printed_scripts() {
	foreach ( self::$scripts as $handle ) {
		self::localize_script( $handle );
	}
}