forked from mirror/_s
Ignore WPCS output escape warning for description as it *is* already correctly escaped.
Fixes failing travis build.
This commit is contained in:
parent
13f57054c1
commit
6ba9dbcf6b
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
$description = get_bloginfo( 'description', 'display' );
|
$description = get_bloginfo( 'description', 'display' );
|
||||||
if ( $description || is_customize_preview() ) : ?>
|
if ( $description || is_customize_preview() ) : ?>
|
||||||
<p class="site-description"><?php echo $description; ?></p>
|
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div><!-- .site-branding -->
|
</div><!-- .site-branding -->
|
||||||
|
|
||||||
|
|
Reference in New Issue