Skip to content

Instantly share code, notes, and snippets.

@ArtemSites
Last active August 4, 2019 08:08
Show Gist options
  • Save ArtemSites/679eaadd85a0ece8810d5213c3dbcd86 to your computer and use it in GitHub Desktop.
Save ArtemSites/679eaadd85a0ece8810d5213c3dbcd86 to your computer and use it in GitHub Desktop.
Получить путь к теме wordpress в js файле.
function setObjThemePath() {
wp_register_script( 'my-script', 'myscript_url' );
wp_enqueue_script( 'my-script' );
$translation_array = array( 'url' => get_stylesheet_directory_uri() );
wp_localize_script( 'my-script', 'theme', $translation_array );
}
add_action( 'wp_enqueue_scripts', 'setObjThemePath' );
var themeUrl = theme.url;
console.log(themeUrl);//http://domen-name.com/wp-content/themes/theme-name/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment