=== Content Template Engine === Contributors: miyauchi Tags: the_content, twig, post, page Requires at least: 4.3 Tested up to: 4.3 Stable tag: 0.1.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Enables Twig template engine in the WordPress contents. == Description == This plugin enables Twig template engine in the WordPress contents. You can post article like following. `{% if post.my_custom_field %} Hello {{ post.my_custom_field }}! {% endif %}` http://twig.sensiolabs.org/ See more information: https://github.com/miya0001/content-template-engine = Reuqires = * PHP 5.3 or later * WordPress 4.3 or later = Template examples Template with custom field: `{% if post.my_custom_field %} Hello {{ post.my_custom_field }}! {% endif %}` Template with [advanced custom fields](http://www.advancedcustomfields.com/): `{% if acf.name %} Hello {{ acf.name }}! {% endif %}` Template with [acf-repeater](http://www.advancedcustomfields.com/add-ons/repeater-field/): `