diff --git a/global-templates/left-sidebar-check.php b/global-templates/left-sidebar-check.php index 8585390..7e02ebb 100644 --- a/global-templates/left-sidebar-check.php +++ b/global-templates/left-sidebar-check.php @@ -45,8 +45,7 @@ if ( $is_woocommerce ) { } else { $html .= 'col-md-12 content-area" id="primary">'; } - _e( // WPCS: XSS OK. - $html ); + echo $html; // WPCS: XSS OK. } elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) { $html = '
'; } - _e( // WPCS: XSS OK. - $html ); + echo $html; // WPCS: XSS OK. } else { echo '
'; }