can require “themefolder/includes/widgets.php” in “themefolder/functions.php” yet widgets.php doesn’t run
The first location where PHP would look for relative path will not be the file you specify include in, but relative to point of entry file (index.php or whatever). Files are included based on the file path given or, if none is given, the include_path specified. If the file isn’t found in the include_path, include … Read more