# customify/2.7.0/features/customizer/controls/class-Pix_Customize_HTML_Control.php

Customify, version 2.7.0. 20 lines.

- Page: https://pluginprobe.com/plugins/customify/2.7.0/code/features/customizer/controls/class-Pix_Customize_HTML_Control.php
- Raw: https://pluginprobe.com/plugins/customify/2.7.0/raw/features/customizer/controls/class-Pix_Customize_HTML_Control.php
- Modified: 2020-04-27T15:20:26+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/customify/2.7.0/code/features/customizer/controls/class-Pix_Customize_HTML_Control.php#L10-L20`.

```php
<?php

/**
 * Class Pix_Customize_HTML_Control
 */
class Pix_Customize_HTML_Control extends Pix_Customize_Control {
	public $type    = 'html';
	public $action  = null;
	public $html    = null;

	/**
	 * Render the control's content.
	 */
	public function render_content() {
		if ( ! empty( $this->html ) ) {
			echo ( $this->html );
		}
	}
}

```
