checkout(); // In your theme's functions.php add_filter('timber/twig', function($twig) { $twig->addFunction(new \Twig\TwigFunction('WC', function() { return WC(); })); return $twig; }); // Render the Twig template Timber::render('shop/checkout.twig', $context);