Skip to content

Commit

Permalink
updated - escaping functions
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveJonesDev committed May 24, 2024
1 parent 4da4797 commit 46a01f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions single-slp_contacts.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@

<?php if ( get_field( 'property_type' ) ) : ?>
<h2 class="title">Property Type</h2>
<div class="detail"><?php echo esc_html( get_field( 'property_type' ) ); ?></div>
<div class="detail"><?php echo wp_kses_post( get_field( 'property_type' ) ); ?></div>
<?php endif; ?>

<?php if ( get_field( 'financing_options' ) ) : ?>
<h2 class="title">Financing Options</h2>
<div class="detail"><?php echo esc_html( get_field( 'financing_options' ) ); ?></div>
<div class="detail"><?php echo wp_kses_post( get_field( 'financing_options' ) ); ?></div>
<?php endif; ?>

<?php
Expand Down

0 comments on commit 46a01f7

Please sign in to comment.