Ignore WPCS output escape warning for description as it *is* already correctly escaped.

Fixes failing travis build.
This commit is contained in:
jrfnl 2015-11-11 15:34:03 +01:00
parent 13f57054c1
commit 6ba9dbcf6b
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@
$description = get_bloginfo( 'description', 'display' );
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; ?>
</div><!-- .site-branding -->