I’m looking to insert a string of JavaScript variables AFTER the in_footer enqueued scripts. When I write the string via the wp_footer hook, they occur before the in_footer scripts. Is there another hook I can tie into that happens after those enqueued scripts have been written.
Leave a Reply
You must be logged in to post a comment.
If you change the priority on the hook to
wp_footer
you should be able to shift when it’s called in reference to the enqueue functions.Example:
There’s also the
shutdown
hook that runs last just beforewp_cache_close();
, but you should run the filters only until a priority of 9.Another option would be to hook with a priority as high as possible for e.g. 9999 into the hook (priority is the 3rd arg).