Manual Windsor registration
Pre-release
Pre-release
Prior to this, bootstrap/start.php pose a naive assumption on the Wordpress installation setup.
Developers now must register Windsor based on their setup, for example from within their functions.php:
function register_acf_windsor()
{
\Windsor\Capsule\Manager::make()->register();
}
add_action('acf/init', 'register_acf_windsor');