djboris88 / timber-commented-include
Twig extension for Timber which outputs HTML comments before and after the `include` tag
Installs: 31 898
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 0
Forks: 4
Open Issues: 0
Requires
- php: >=5.6
- djboris88/twig-commented-include: ^2.0
This package is auto-updated.
Last update: 2024-11-08 10:05:33 UTC
README
This is a simple port of djboris88/twig-commented-include
to be used with
Timber for WordPress.
It helps debugging and navigating through
many Twig partials in your project. It outputs a HTML comments before and after each
include
statement while rendering the template. Comments look like this:
<!-- Begin output of "_partials/_navigation.twig" --> <div class="navigation" role="navigation" data-navigation>...</div> <!-- / End output of "_partials/_navigation.twig" -->
Installation
To install the latest stable version of this component, open a console and execute the following command:
composer require djboris88/timber-commented-include
Usage
To be able to see the commented output, WP_DEBUG
has to be defined and set as
true
in wp-config.php
file.
The Twig Extension will automatically be registered and applied. If the WordPress add_filter function is not available when that happens, it will fail. In that case, you will need to call initialization yourself at an appropriate time after WordPress itself is initialized:
if (function_exists('\Djboris88\Timber\initialize_filters')) { \Djboris88\Timber\initialize_filters(); }