WordPress : Comment obtenir une image dynamique dans les scripts sur wp
Comment puis-je dynamiquer ou interroger dans wp ce type de script pour chaque message ?
<script>
$(document).ready(function() {
mast.init();
$("#laptop").rollerblade({
imageArray : [
rootPath + 'macbook/front.png',
rootPath + 'macbook/front-side-right.png',
rootPath + 'macbook/side-right.png',
rootPath + 'macbook/back-side-right.png',
rootPath + 'macbook/back.png',
rootPath + 'macbook/back-side-left.png',
rootPath + 'macbook/side-left.png',
rootPath + 'macbook/front-side-left.png'
],
sensitivity : 50,
drag : true
});
});
</script>
J’ai besoin d’obtenir dynamiquement l’image rootPath dans wordpress.
Solution n°1 trouvée
si vous êtes nouveau sur jQuery et wordpress, vous voudrez d’abord changer vos références jQuery de $ à jQuery.
Ensuite, vous pouvez modifier votre header.php pour que le thème affiche le rootpath
<script>
var rootPath = <?php site_url(); ?>;
</script>
Maintenant, si ce que vous voulez vraiment, c’est l’URL de votre thème… cela changerait légèrement.
<script>
var rootPath = <?php echo get_template_directory_uri(); ?>;
</script>
http://codex.wordpress.org/Function_Reference/site_url http://codex.wordpress.org/Function_Reference/get_template_directory_uri
0 commentaire