You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nicholas Davidson edited this page Dec 17, 2015
·
1 revision
Creating your own function filters
In your functions.php, inside your LaunchframeSite class, add the function
function add_to_twig($twig) {
/* this is where you can add custom functions to your theme */
$twig->addExtension(new Twig_Extension_StringLoader());
$twig->addFilter('imgix', new Twig_Filter_Function('get_imgix'));
return $twig;
}
For IMGIX specifically, in your twig file, then add this: