Answers for "get_template_directory_uri example"

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
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
1

get theme path in wordpress

include( get_template_directory_uri() . '/includes/my_file.php' );
Posted by: Guest on August-14-2020
0

get template directory uri

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
Posted by: Guest on February-11-2021

Code answers related to "get_template_directory_uri example"

Browse Popular Code Answers by Language