Autoloading in Child Theme

I’m trying to autoload the vendor/autoload.php from my parent theme into my child theme. heres what i have tried but to no avail: function beast_theme_setup() { $var1 = get_theme_root_uri() . ‘/beast/vendor/autoload.php’; $var2 = get_theme_root_uri() . ‘/beast/functions.php’; $var = locate_template( array( $var1, $var2), true, false ); var_dump($var); } add_action( ‘after_setup_theme’, ‘beast_theme_setup’, 11 ); and include get_theme_root_uri() … Read more