# easy-hotel/trunk/admin/includes/framework/fields/subheading/subheading.php

Easy Hotel – Powerful Hotel Booking, version trunk. 25 lines.

- Page: https://pluginprobe.com/plugins/easy-hotel/trunk/code/admin/includes/framework/fields/subheading/subheading.php
- Raw: https://pluginprobe.com/plugins/easy-hotel/trunk/raw/admin/includes/framework/fields/subheading/subheading.php
- Modified: 2026-07-15T12:14:36+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/easy-hotel/trunk/code/admin/includes/framework/fields/subheading/subheading.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
/**
 *
 * Field: subheading
 *
 * @since 1.0.0
 * @version 1.0.0
 *
 */
if ( ! class_exists( 'ESHB_Field_subheading' ) ) {
  class ESHB_Field_subheading extends ESHB_Fields {

    public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
      parent::__construct( $field, $value, $unique, $where, $parent );
    }

    public function render() {

      echo ( ! empty( $this->field['content'] ) ) ? wp_kses_post($this->field['content']) : '';

    }

  }
}

```
