WC_Shop_Customizer::enqueue_scripts
Enqueue scripts for the customizer.
Метод класса: WC_Shop_Customizer{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Shop_Customizer = new WC_Shop_Customizer(); $WC_Shop_Customizer->enqueue_scripts();
Код WC_Shop_Customizer::enqueue_scripts() WC Shop Customizer::enqueue scripts WC 10.7.0
public function enqueue_scripts() {
$handle = 'custom-notice';
wp_register_script( $handle, false, array( 'customize-controls' ), WC_VERSION, false );
wp_enqueue_script( $handle );
}