Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created October 29, 2015 07:56
Show Gist options
  • Save ville6000/86c5ad310d7e26398a72 to your computer and use it in GitHub Desktop.
Save ville6000/86c5ad310d7e26398a72 to your computer and use it in GitHub Desktop.
Add localized JavaScript variables to WordPress theme
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
wp_localize_script(
'script',
'i18n',
array(
'download' => __( 'Download file', 'mytheme' ),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment