wp_localize_script
-
Hi!
I’m trying to get a like script running on my blog.
This is a part of the code, which I placed in my functions.php:
wp_localize_script('like_post', 'ajax_var', array( 'url' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('ajax-nonce') ));
But when I run it in debug mode, the following error appears:
wp_localize_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks.
I’ve did many searches, but could only find solutions about “wp_enqueue_script”, but unfortunately not about “wp_localize_script”.
So is there something I’m doing wrong what makes the error appears?
Thanks in advance!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wp_localize_script’ is closed to new replies.