get child theme url in wordpress 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="" />