Enable Theme Functions.php

I am used to the Drupal theme world where all goes in template.php

Is there a specifc config I need to set to enable functions.php in my custom theme?

Marc Behiels

The file that actually gets loaded for a theme automatically is custom.php. Themes with a functions.php, you’ll generally see that they are including that with a require_once line from their custom.php file.

Thank you - I had a feeling it was something along that line but could not find in dev docs.

Marc Behiels