From 883c25fb8854905a63100120e155507a3b4c4797 Mon Sep 17 00:00:00 2001 From: koenemann Date: Thu, 2 Feb 2017 12:14:15 +0100 Subject: [PATCH] output html via _e --- global-templates/left-sidebar-check.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global-templates/left-sidebar-check.php b/global-templates/left-sidebar-check.php index a258f3a..0b36ece 100644 --- a/global-templates/left-sidebar-check.php +++ b/global-templates/left-sidebar-check.php @@ -45,7 +45,7 @@ if ( $is_woocommerce ) { } else { $html .= 'col-md-12 content-area" id="primary">'; } - echo $html; + _e( $html ); } elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) { $html = '
'; } - echo $html; + _e( $html ); } else { echo '
'; }