get_template_directory_uri pointing to parent theme not child theme

The problem I am having is that the get_template_directory_uri is pointing to the parent theme like site/wp-content/themes/twentythirteen/myGallery/gallery_functions_include.php but I want it to point to my child theme which should be site/wp-content/themes/child-twentythirteen/myGallery/gallery_functions_include.php what I am using is include (TEMPLATEPATH . ‘/myGallery/gallery_functions_include.php’); 3 get_template_directory_uri() will always return the URI of the current parent theme. To get the … Read more