Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // The regular way
- wp_localize_script(
- 'myJSHandle',
- 'myJSVariable',
- [
- 'demo'=>'demoValue',
- '_ajax_nonce'=>wp_create_nonce('myAjaxNonce'),
- ]
- );
- // Borlabs Cache support + fallback
- if (function_exists('BorlabsCacheHelper') && method_exists(BorlabsCacheHelper(), 'localizeScript')) {
- // Same setup, just different function
- BorlabsCacheHelper()->localizeScript(
- 'myJSHandle',
- 'myJSVariable',
- [
- 'demo'=>'demoValue',
- '_ajax_nonce'=>'wp_create_nonce__myAjaxNonce', // This is the difference, wp_create_nonce__ will be detected and myAjaxNonce will be used for wp_create_nonce()
- ]
- );
- } else {
- // The regular way
- wp_localize_script(
- 'myJSHandle',
- 'myJSVariable',
- [
- 'demo'=>'demoValue',
- '_ajax_nonce'=>wp_create_nonce('myAjaxNonce'),
- ]
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement