localize_data[ $object_name ] = $data; } /** * Enqueue the asset. * * @since 2.5 * * @return void */ public function enqueue_asset() { wp_enqueue_script( $this->handle, $this->url ); if ( empty( $this->localize_data ) ) { return; } foreach ( $this->localize_data as $object_name => $data ) { wp_localize_script( $this->handle, $object_name, $data ); } } /** * Print the asset. * * @since 2.5 * * @return void */ public function print_asset() { $this->enqueue_asset(); wp_print_scripts( $this->handle ); } }