hooks(); // page.php namespace q\theme\child\controller; class page { function __construct(){ // ... empty ## } function hooks(){ // add template view ## \add_filter( 'willow/view/custom', function( $array ){ return array_merge( [ 'page.willow' => [ 'template' => 'page.willow', 'name' => 'Theme : Page', ], 'privacy.willow' => [ 'template' => 'privacy.willow', 'name' => 'Theme : Privacy', ], ], $array ); }); } }