WPCS: XSS OK.

This commit is contained in:
koenemann 2017-02-02 12:16:24 +01:00
parent 883c25fb88
commit 1fe4be6667
1 changed files with 4 additions and 2 deletions

View File

@ -45,7 +45,8 @@ if ( $is_woocommerce ) {
} else {
$html .= 'col-md-12 content-area" id="primary">';
}
_e( $html );
_e( // WPCS: XSS OK.
$html );
} elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) {
$html = '<div class="';
if ( 'both' === $sidebar_pos ) {
@ -53,7 +54,8 @@ if ( $is_woocommerce ) {
} else {
$html .= 'col-md-12 content-area" id="primary">';
}
_e( $html );
_e( // WPCS: XSS OK.
$html );
} else {
echo '<div class="col-md-12 content-area" id="primary">';
}