A3 Code Note

12/06/2022

#15 Theme Development | Singleton design pattern in WordPress

以下URLの
master を 「feature/add-singleton」に変更し、
aquila/inc/helpers/autoloader.php
aquila/inc/traits/trait-singleton.php
を自分のテーマに入れる。
ファイルをクリックし、Rawをクリック後、全選択してコピーして貼り付け。
https://github.com/imranhsayed/aquila

function.php の頭に追加

if ( ! defined( 'NOTE_DIR_PATH' ) ){
    define( 'NOTE_DIR_PATH', untrailingslashit( get_template_directory() ) );
}

require_once NOTE_DIR_PATH . '/inc/helpers/autoloader.php';