* @created 2022-07-20 15:35:59 * @modified 2022-07-20 15:35:59 */ namespace Plugin\HeaderMenu; class Bootstrap { public function boot() { add_filter('header.categories', function ($data) { $data[] = [ 'name' => '插件链接', 'url' => 'https://www.google.com', 'children' => [ [ "name" => "Google", "url" => "https://www.google.com", ], [ "name" => "百度", "url" => "https://www.baidu.com", ] ], ]; return $data; }); } }