its okay WPCS, really...
This commit is contained in:
parent
1fe4be6667
commit
a9aecfb68f
|
@ -45,8 +45,7 @@ if ( $is_woocommerce ) {
|
||||||
} else {
|
} else {
|
||||||
$html .= 'col-md-12 content-area" id="primary">';
|
$html .= 'col-md-12 content-area" id="primary">';
|
||||||
}
|
}
|
||||||
_e( // WPCS: XSS OK.
|
echo $html; // WPCS: XSS OK.
|
||||||
$html );
|
|
||||||
} elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) {
|
} elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) {
|
||||||
$html = '<div class="';
|
$html = '<div class="';
|
||||||
if ( 'both' === $sidebar_pos ) {
|
if ( 'both' === $sidebar_pos ) {
|
||||||
|
@ -54,8 +53,7 @@ if ( $is_woocommerce ) {
|
||||||
} else {
|
} else {
|
||||||
$html .= 'col-md-12 content-area" id="primary">';
|
$html .= 'col-md-12 content-area" id="primary">';
|
||||||
}
|
}
|
||||||
_e( // WPCS: XSS OK.
|
echo $html; // WPCS: XSS OK.
|
||||||
$html );
|
|
||||||
} else {
|
} else {
|
||||||
echo '<div class="col-md-12 content-area" id="primary">';
|
echo '<div class="col-md-12 content-area" id="primary">';
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue