1<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
2
1// Get template directory example:
2<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" />
3
4// If you use child theme you will have to use another function:
5<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png" />
6