Filters - miya0001/content-template-engine GitHub Wiki

Custom filtes for WordPress

There are some custom filters from WordPress functions.

Post filters

  • the_content
  • the_excerpt
  • the_permalink
  • the_postthumbnail
  • the_author
  • the_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_html
  • esc_attr
  • esc_textarea
  • esc_url
  • esc_js

For example:

{{ post.post_title | esc_html }}

Default filters

See Twig documentation.