'https://roots.io/acorn/docs/installation/', 'link_text' => __('Acorn Docs: Installation', 'domain'), ] ); } add_action('after_setup_theme', function () { Application::configure() ->withProviders([ ]) ->withMiddleware(function (Middleware $middleware) { }) ->withRouting(wordpress: true) ->boot(); }, 0); // Insert code injection to the document head add_action('wp_head', function () { echo view('injections.head')->render(); }); // Insert code injection to the document footer add_action('wp_footer', function () { echo view('injections.footer')->render(); });