Answers for "get theme url in wordpress"

PHP
2

wordpress get template url

// Get template directory example:
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" />

// If you use child theme you will have to use another function:
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png" />
Posted by: Guest on July-13-2020
0

wordpress get theme uri

<?php echo get_template_directory_uri(); ?>/images/logo.png">
Posted by: Guest on June-07-2021
3

get app url in laravel

URL::to('/');
Posted by: Guest on June-27-2020

Code answers related to "get theme url in wordpress"

Browse Popular Code Answers by Language