Why does including a file in theme’s functions.php not work?

When including files in functions.php, you need to reference the correct filepath, using get_template_directory():

include( get_template_directory() . '/newfile.php' );

Leave a Comment