-
-
Save larsmqller/2459efd87d84734152f7 to your computer and use it in GitHub Desktop.
How I auto-include my library of "controllers" in a theme/plugin.
This file contains 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; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment