get_template_directory_uri() code example

Example 1: get templete uri

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />

Example 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" />

Example 3: get_template_directory_uri

/* get logo or image */
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />

Example 4: get theme path in wordpress

include( get_template_directory_uri() . '/includes/my_file.php' );

Example 5: get template directory uri

<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />

Tags:

Php Example