Linux 软件免费装
Banner图

Editor for Timber

开发者 drogueronin
更新时间 2020年12月16日 20:02
PHP版本: 7.4 及以上
WordPress版本: 5.5.1
版权: GPLv2 or later
版权网址: 版权信息

标签

templates timber twig

下载

1.0.2

详情介绍:

Features Plugin Dependencies How to use the MetaBox Feature The plugin uses the path defined in Timber::$locations as the templates path or falls back to the uploads folder if none is provided. Either adjust your Timber::render('page.twig', $context)-functions like this: $filenames = [TimberEditor::getTemplateFilename(), 'page.twig']; Timber::render($filenames, $context); like this ` TimberEditor::render('page.twig', $context); 'page.twig' serves as a fallback if the current posts's template doesn't exist or like this TimberEditor::renderPost('page.twig', $context); renderPost() automatically adds ['post' => new Timber\Post()] to the $context `