wp_localize_script no longer working after 5.5 update
Why this function is no longer working in my theme after WordPress 5.5 updater:
add_action('wp_enqueue_scripts', function() {
$vars = array('11' = '22');
wp_localize_script('jquery', 'vars', $vars);
});
It used to insert JS code in the header before the 5.5 update.
Topic wp-localize-script Wordpress
Category Web