Answers for "get_template_directory_uri in wordpress"

PHP
5

get templete uri

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
Posted by: Guest on July-24-2020
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

get_template_directory_uri

/* get logo or image */
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
Posted by: Guest on November-14-2020

Code answers related to "get_template_directory_uri in wordpress"

Browse Popular Code Answers by Language