# merchant/2.2.7/admin/classes/admin-options/fields/content/class-merchant-field-content.php

Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together &amp; More for WooCommerce – Merchant, version 2.2.7. 33 lines.

- Page: https://pluginprobe.com/plugins/merchant/2.2.7/code/admin/classes/admin-options/fields/content/class-merchant-field-content.php
- Raw: https://pluginprobe.com/plugins/merchant/2.2.7/raw/admin/classes/admin-options/fields/content/class-merchant-field-content.php
- Modified: 2026-05-21T18:12:40+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/merchant/2.2.7/code/admin/classes/admin-options/fields/content/class-merchant-field-content.php#L10-L20`.

```php
<?php
/**
 * Merchant Field: Content
 *
 * @package Merchant
 * @since   2.2.5
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Merchant_Field_Content
 *
 * Renders static HTML content within the settings panel.
 *
 * @since 2.2.5
 */
class Merchant_Field_Content extends Merchant_Abstract_Field {

	/**
	 * Render the content field HTML output.
	 *
	 * @since 2.2.5
	 *
	 * @return void
	 */
	public function render() {
		echo wp_kses_post( $this->field['content'] );
	}
}

```
