HTML media display HTML code instead of image
-
Plugin Version: 2.1.19
The
$html_media
variable is being wrapped withesc_html
which is causing HTML to display on the page instead of the image.File:
wp-content/plugins/post-grid/templates/post-grid-hook.php
Line: 568
<div class="layer-media"><?php echo esc_html($html_media); ?></div>
Should be(??):
<div class="layer-media"><?php echo $html_media; ?></div>
The page I need help with: [log in to see the link]
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘HTML media display HTML code instead of image’ is closed to new replies.