Editor for Timber

Editor for Timber Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 1,111 downloads
Editor for Timber Icon

Try plugin: Editor for Timber

We'll create fresh WordPress site with Editor for Timber installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Editor for Timber

Page, Theme & Plugin Editor Extension for Timber http://www.upstatement.com/timber/

0


0


0


0


0

updated: 3 years ago
since: 3 years ago
author: Daniel Weipert

Description

Features

  • adds a metabox to configurable Post-Types to create and edit Twig templates
  • adds Twig support to the WP Theme & Plugin editors
    • you can even customize the CodeMirror theme

Plugin Dependencies

  • https://wordpress.org/plugins/timber-library/
  • https://wordpress.org/plugins/classic-editor/

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