mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 19:13:44 +03:00
Fix PHPCS issue
This commit is contained in:
parent
de07108905
commit
46bdb89c3b
|
@ -55,7 +55,10 @@ get_header();
|
||||||
<h2><?php esc_html_e( 'About', 'wporg' ); ?></h2>
|
<h2><?php esc_html_e( 'About', 'wporg' ); ?></h2>
|
||||||
|
|
||||||
<div class="pledge-company-description">
|
<div class="pledge-company-description">
|
||||||
<?php echo wpautop( wp_kses_data( $post->{ META_PREFIX . 'org-description' } ) ); ?>
|
<?php
|
||||||
|
// phpcs:ignore WordPress.Security.EscapeOutput -- wp_kses_data escapes the content.
|
||||||
|
echo wpautop( wp_kses_data( $post->{ META_PREFIX . 'org-description' } ) );
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if ( ! empty( $contributors ) ) : ?>
|
<?php if ( ! empty( $contributors ) ) : ?>
|
||||||
|
|
Loading…
Reference in a new issue