HTML tags are not working
-
Hi dear authors!
1. I`ve installed the plugin. In back-end it works great.
2. I`ve added the view of description in taxonomy view template:'title' => $wp_query->queried_object->name, 'description' => $wp_query->queried_object->description, 'wp_query' => $wp_query,
and to .twig file:
{% block content %} <h1 class="page-header">{{ title }}</h1> <p>{{ description }}</p>
And it works! But only html tags are escaped.
I have to recieve formatted text, but I recieve:
<h1 class="page-header">This is a title</h1> <p>This is a <strong>description</strong> <b>and it should be bold</b></p>
See the img: https://goo.gl/n8GZ0S
Tried to insert these rows to functions.php:
remove_filter( 'pre_link_description', 'wp_filter_kses' ); remove_filter( 'pre_link_notes', 'wp_filter_kses' ); remove_filter( 'term_description', 'wp_kses_data' );
Also not working..
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘HTML tags are not working’ is closed to new replies.