回答:
1.これはWPのパフォーマンスに目に見える形で影響しますか?
IF PHPやサーバのパフォーマンス:それは本当のは、いくつかの小さなファイルのために影響を与えているだろう、それはそれはWPより低い影響を与えている影響を与えるだろう。本当に影響がありますか?あんまり。ただし、パフォーマンステストは自分で簡単に開始できます。
2. 1つのファイル(functions.php)内にすべて保存する方が良いですか
さて、質問は「何が優れている」ですか?ファイル全体の読み込み時間から?ファイル編成の観点から?とにかく、違いはありません。概要を失うことなく、快適な方法で結果を維持できるように、それを行います。
3.これに関して最善の方法は何ですか?
私が通常行うことは、単に(、などなど-必要なものに依存します)のどこかにフックしplugins_loaded、after_setup_themeそれらすべてを単に要求することです:
foreach ( glob( plugin_dir_path( __FILE__ ) ) as $file )
    require_once $file;とにかく、もう少し複雑で柔軟にすることもできます。その例を見てみましょう:
<?php
namespace WCM;
defined( 'ABSPATH' ) OR exit;
class FilesLoader implements \IteratorAggregate
{
    private $path = '';
    private $files = array();
    public function __construct( $path )
    {
        $this->setPath( $path );
        $this->setFiles();
    }
    public function setPath( $path )
    {
        if ( empty( $this->path ) )
            $this->path = \plugin_dir_path( __FILE__ ).$path;
    }
    public function setFiles()
    {
        return $this->files = glob( "{$this->getPath()}/*.php" );
    }
    public function getPath()
    {
        return $this->path;
    }
    public function getFiles()
    {
        return $this->files;
    }
    public function getIterator()
    {
        $iterator = new \ArrayIterator( $this->getFiles() );
        return $iterator;
    }
    public function loadFile( $file )
    {
        include_once $file;
    }
}基本的に同じことを行うクラスです(PHP 5.3以降が必要です)。利点は、もう少しきめ細かいことです。そのため、特定のタスクを実行するために必要なフォルダーからファイルを簡単にロードできます。
$fileLoader = new WCM\FilesLoader( 'assets/php' );
foreach ( $fileLoader as $file )
    $fileLoader->loadFile( $file );PHP v5.2以降の新しい世界に住んでいるとき、を利用でき\FilterIteratorます。最短バリアントの例:
$files = new \FilesystemIterator( __DIR__.'/src', \FilesystemIterator::SKIP_DOTS );
foreach ( $files as $file )
{
    /** @noinspection PhpIncludeInspection */
    ! $files->isDir() and include $files->getRealPath();
}PHP v5.2を使用する必要がある場合でも\DirectoryIterator、ほぼ同じコードを使用できます。
loadFile()またはを呼び出す前に出力をフィルタリングすることもできrequire_onceます。そのため、ユーザー自身が必要なadd_theme_support()/remove_*()モジュールのみを使用できるテーマサポートのようなものを提供するだけです。次に、$loadFile()またはの結果を使用しglob()ます。ところで、これがあなたの解決策だった場合、そのようにマークしてください。ありがとう。
                    私は私のニーズに@kaiserの回答を少し作り直しました-私はそれを共有すると思った。より多くのオプションが必要でした。それらはコード内および以下の使用例で説明されています。
コード:
<?php
defined( 'ABSPATH' ) OR exit;
/**
 * Functions_File_Loader
 * 
 * Makes it possible to clutter the functions.php into single files.
 * 
 * @author kaiser
 * @author ialocin
 * @link http://wordpress.stackexchange.com/q/111970/22534
 *
 */
class Functions_File_Loader implements IteratorAggregate {
    /**
     * @var array
     */
    private $parameter = array();
    /**
     * @var string
     */
    private $path;
    /**
     * @var string
     */
    private $pattern;
    /**
     * @var integer
     */
    private $flags;
    /**
     * @var array
     */
    private $files = array();
    /**
     * __construct
     *
     * @access public 
     * @param array $parameter
     */
    public function __construct( $parameter ) {
        $this->set_parameter( $parameter );
        $this->set_path( $this->parameter[ 'path' ] );
        $this->set_pattern( $this->parameter[ 'pattern' ] );
        $this->set_flags( $this->parameter[ 'flags' ] );
        $this->set_files();
    }
    /**
     * set_parameter
     *
     * @access public 
     * @param array $parameter
     */
    public function set_parameter( $parameter ) {
        if ( empty( $parameter ) )
            $this->parameter = array('','','');
        else
            $this->parameter = $parameter;
    }
    /**
     * get_parameter
     *
     * @access public 
     * @return array
     */
    public function get_parameter() {
        return $this->parameter;
    }
    /**
     * set_path
     *
     * defaults to get_stylesheet_directory()
     * 
     * @access public 
     * @param string $path
     */
    public function set_path( $path ) {
        if ( empty( $path ) )
            $this->path = get_stylesheet_directory().'/';
        else
            $this->path = get_stylesheet_directory().'/'.$path.'/';
    }
    /**
     * get_path
     *
     * @access public 
     * @return string
     */
    public function get_path() {
        return $this->path;
    }
    /**
     * set_pattern
     *
     * defaults to path plus asterisk »*«
     * 
     * @access public 
     * @param string $pattern
     */
    public function set_pattern( $pattern ) {
        if ( empty( $pattern ) )
            $this->pattern = $this->get_path() . '*';
        else
            $this->pattern = $this->get_path() . $pattern;
    }
    /**
     * get_pattern
     *
     * @access public 
     * @return string
     */
    public function get_pattern() {
        return $this->pattern;
    }
    /**
     * set_flags
     *
     * @access public 
     * @param integer $flags
     */
    public function set_flags( $flags ) {
        if ( empty( $flags ) )
            $this->flags = '0';
        else
            $this->flags = $flags;
    }
    /**
     * get_flags
     *
     * @access public 
     * @return integer
     */
    public function get_flags() {
        return $this->flags;
    }
    /**
     * set_files
     *
     * @access public 
     */
    public function set_files() {
        $pattern = $this->get_pattern();
        $flags = $this->get_flags();
        $files = glob( $pattern, $flags );
        $this->files = $files;
    }
    /**
     * get_files
     *
     * @access public 
     * @return array
     */
    public function get_files() {
        return $this->files;
    }
    /**
     * getIterator
     * 
     * This function name has to be kept
     * 
     * @access public 
     * @return void
     */
    public function getIterator() {
        $iterator = new ArrayIterator( $this->get_files() );
        return $iterator;
    }
    /**
     * load_file
     *
     * @access public 
     * @param string $file
     */
    public function load_file( $file ) {
        include_once $file;
    }
}
使用例:
$parameter = array(
        // define path relative to get_stylesheet_directory()
        // optional, defaults to get_stylesheet_directory()
        'path' => 'includes/plugins',
        // optional, defaults to asterisk »*«
        // matches all files ending with ».php« 
        // and not beginning with »_«, good for quickly deactivating 
        // directories searched are »path« and »subfolders«
        // Additional examples:
        // '{*/,}{[!_],}func-*.php' same as above but for files with a prefix
        // '[!_]*.php' php files in defined »path«, not beginning with »_« 
        'pattern' => '{*/,}[!_]*.php',
        // optional, defaults to 0
        // needed if for example brackets are used
        // more information: http://www.php.net/manual/en/function.glob.php
        'flags' => GLOB_BRACE
    );
// create object
$functionsfileloader = new Functions_File_Loader( $parameter );
// load the files
foreach ( $functionsfileloader as $file ) {
    $functionsfileloader->load_file( $file );
}