PluginProbe
WPCasa – Real Estate for WordPress / trunk
WPCasa – Real Estate for WordPress vtrunk
1.5.5 1.5.4 1.5.3 1.5.2 1.5.1 1.5.1.1 trunk 1.2.0 1.2.1 1.2.10 1.2.10.1 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.2.9.1 1.2.9.2 1.3.0 All 31 releases
wpcasa / includes / admin / views / option-heading.php

option-heading.php in WPCasa – Real Estate for WordPress trunk, at includes/admin/views/option-heading.php

16 lines 425 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
4 if (isset($option)) {
5 $option_name = isset($option['name']) ? stripslashes($option['name']) : '';
6 $option_desc = isset($option['desc']) ? stripslashes($option['desc']) : '';
7 ?>
8
9 <th scope="row" colspan="2">
10 <h4> <?php echo esc_html( $option_name ) ?></h4>
11 <i><?php echo esc_html( $option_desc ) ?></i>
12 </th>
13
14 <?php } ?>
15
16