WC_Shop_Customizer::enqueue_scripts()
Enqueue scripts for the customizer.
Method of the class: WC_Shop_Customizer{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Shop_Customizer = new WC_Shop_Customizer(); $WC_Shop_Customizer->enqueue_scripts();
WC_Shop_Customizer::enqueue_scripts() WC Shop Customizer::enqueue scripts code WC 9.4.2
public function enqueue_scripts() { $handle = 'custom-notice'; wp_register_script( $handle, false, array( 'customize-controls' ), WC_VERSION, false ); wp_enqueue_script( $handle ); }