Last active
August 4, 2019 08:08
-
-
Save ArtemSites/679eaadd85a0ece8810d5213c3dbcd86 to your computer and use it in GitHub Desktop.
Получить путь к теме wordpress в js файле.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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