Created
April 28, 2011 16:28
-
-
Save fumikito/946696 to your computer and use it in GitHub Desktop.
WordPressのテーマ内functions.phpが長くなりがちなので、functionsフォルダにファイルを分割して置くとき書いとくと便利
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
/* | |
* functionsフォルダにあるファイルをすべて読み込む | |
*/ | |
foreach(glob(TEMPLATEPATH."/functions/*.php") as $file){ | |
require_once $file; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment