Last active
March 15, 2022 04:17
-
-
Save szbl/5924570 to your computer and use it in GitHub Desktop.
How I auto-include my library of "controllers" in a theme/plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// include all PHP files in ./lib/ directory: | |
foreach ( glob( dirname( __FILE__ ) . '/lib/*.php' ) as $file ) | |
include $file; | |
talentedaamer
commented
Jan 19, 2017
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment