Skip to content

Instantly share code, notes, and snippets.

@larsmqller
Forked from szbl/my-plugin-snippet.php
Created November 4, 2015 12:02
Show Gist options
  • Save larsmqller/2459efd87d84734152f7 to your computer and use it in GitHub Desktop.
Save larsmqller/2459efd87d84734152f7 to your computer and use it in GitHub Desktop.
How I auto-include my library of "controllers" in a theme/plugin.
<?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