Can't Call New Function File
I've tried everything I could think of but for some reason I cannot pull another functions file into the functions.php properly.
I'm not sure what the deal is, but the way the includes are working, the new functions file does now actually "place code" in the functions.php file, instead it seems to start PHP code outside the wordpress loop.
Code:
/**
* add any of your custom functions below this section
*/
require_once (get_bloginfo('stylesheet_directory') . '/my-functions.php');
I've built a child theme and I'm trying to form some sort of way to move all my custom function into the child theme folder and OUT OF the functions.php file which gets overwritten on upgrades. Users, moderators, or David... anyone care to clue me in on this one?