theme directory path wordpress code example
Example 1: get templete uri
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
Example 2: get theme folder path in wordpress
echo get_stylesheet_directory_uri();
Example 3: get image from theme folder wordpress
<img src="/wp-content/themes/your-theme/assets/images/1.jpg" />