Which is best way to find URI in child Theme.
<?php echo get_template_directory_uri(); ?>
<?php bloginfo('template_directory'); ?>
Below given code works but it has "stylesheet" in it, sounds like its a hake to find URI. Is this the only solution ?
<?php echo get_stylesheet_directory_uri(); ?>
<?php bloginfo('stylesheet_directory'); ?>