wordpress get child theme directory code example
Example 1: get templete uri
<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" width="" height="" alt="" />
Example 2: wordpress base theme child url
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/test.png" alt="" width="" height="" />
Example 3: get theme folder path in wordpress
echo get_stylesheet_directory_uri();
Example 4: get child theme path in wordpress
get_stylesheet_directory() oR
get_theme_file_uri()