# propertyhive/2.4.0/templates/search/floor-area.php

Property Hive, version 2.4.0. 19 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.4.0/code/templates/search/floor-area.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.4.0/raw/templates/search/floor-area.php
- Modified: 2026-09-16T09:29:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.4.0/code/templates/search/floor-area.php#L10-L20`.

```php
<?php
/**
 * Loop Floor Area
 *
 * @author 		PropertyHive
 * @package 	PropertyHive/Templates
 * @version     1.0.0
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

global $property;
?>
<div class="floor-area">

	<?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- The formatter escapes built-in area text before its trusted PHP HTML filter.
    echo $property->get_formatted_floor_area(); ?>

</div>
```
