Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Files

Latest commit

bc514ce · Feb 20, 2019

History

History
18 lines (12 loc) · 530 Bytes

twighelper.md

File metadata and controls

18 lines (12 loc) · 530 Bytes

Rendering a template in PHP: the twig helper

This plugin also enables a twig PHP function for rendering template files and strings, like this:

<?php

// Render a simple template from the site/snippets directory
echo twig('@snippets/header.twig');

// Same, but passing some additionnal variables
echo twig('@snippets/header.twig', ['sticky'=>false]);

// Render a string
echo twig('Hello {{ who }}', ['who'=>'World!']);

If you work with Twig templates for pages, you might not need the twig() helper at all.