# customify/2.10.1/includes/customizer-controls/class-Pix_Customize_HTML_Control.php

Customify, version 2.10.1. 20 lines.

- Page: https://pluginprobe.com/plugins/customify/2.10.1/code/includes/customizer-controls/class-Pix_Customize_HTML_Control.php
- Raw: https://pluginprobe.com/plugins/customify/2.10.1/raw/includes/customizer-controls/class-Pix_Customize_HTML_Control.php
- Modified: 2020-05-21T13:51:24+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.10.1/code/includes/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 );
		}
	}
}

```
