function.php文件未加载

I decided to try building a theme without using a foundation like underscores etc... I have all the required files

(ss of files),

my functions.php file looks like this:

functions file,

and I am trying to load this file to enqueue all my css:

ss of enqueue-scripts file.

This has worked on other themes I did based off underscores so I assume I am missing some function that perhaps controls the pathing?

Added a message to console.log to see the pages were being loaded and on all of them I do get the message back, so I assume they must be pathing. Is there a way to check or set the get_template_directory_uri?

try this:

require __DIR__ . "/functions.php"

Thanks Gerald, was missing the wp_head