| @@ -731,10 +731,10 @@ | ||
| 731 | 731 | if (!empty($item['title'])) { |
| 732 | 732 | printf( |
| 733 | 733 | '<%1$s class="usk-info-list-title"><a %2$s title="%3$s">%3$s</a></%1$s>', |
| 734 | 734 | esc_attr( Utils::get_valid_html_tag($settings['title_tag']) ), |
| 735 | - wp_kses_post($this->get_render_attribute_string('title-link')), | |
| 736 | - wp_kses_post($item['title']) | |
| 735 | + $this->get_render_attribute_string('title-link'), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 736 | + esc_attr($item['title']) | |
| 737 | 737 | ); |
| 738 | 738 | } |
| 739 | 739 | } |
| 740 | 740 | |