Filters - miya0001/content-template-engine GitHub Wiki
Custom filtes for WordPress
There are some custom filters from WordPress functions.
Post filters
the_contentthe_excerptthe_permalinkthe_postthumbnailthe_authorthe_date
For example:
Displays the post thumbnail of the post.
{{ post | the_postthumbnail }}
Displays the excerpt of the post that has a ID 1234.
{{ "1234" | the_excerpt }}
Displays the date of the post.
{{ post | the_date( 'Y-m-d' ) }}
Validation
esc_htmlesc_attresc_textareaesc_urlesc_js
For example:
{{ post.post_title | esc_html }}
Default filters
See Twig documentation.