Wordpress twig template shortcode not displayed Wordpress twig template shortcode not displayed wordpress wordpress

Wordpress twig template shortcode not displayed


Try this

{{  post.post_content|shortcodes }}

And with custom fields

{{ customfield|shortcodes }}


One of the following should work!

{{ wp.do_shortcode( post.post_content) }}

or,

{{ wp.do_shortcode( post.post_content)|raw }}

or ,

{{ wp.do_shortcode( post.post_content|raw ) }}

or

{{ wp.do_shortcode( post.post_content|raw )|raw }}

Updated

Working Code Is :

{{ wp.do_shortcode( post.post_content)|raw }}


{% filter shortcodes %}    {{ wp.do_shortcode(' [email-subscribers') }}{% endfilter %}

but the only HTML displayed not displayed Email subscribers form.