'https://roots.io/acorn/docs/installation/', 'link_text' => esc_html__('Acorn Docs: Installation', 'acorn-starter'), ] ); } add_action('after_setup_theme', function () { $coordinator = new BootCoordinator(); // Another Acorn plugin already booted the framework this request. Our // provider is auto-discovered (composer.json extra.acorn.providers), so // there is nothing left to do. if (! $coordinator->shouldBoot()) { return; } Application::configure() ->withRouting(wordpress: true) ->boot(); $coordinator->markBooted(); // Livewire assets are a global concern — emit once, from the elected owner. LivewireAssets::registerOnce(); }, 0);