# customify/2.1.3/features/customizer/class-Pix_Customize_Control.php

Customify, version 2.1.3. 25 lines.

- Page: https://pluginprobe.com/plugins/customify/2.1.3/code/features/customizer/class-Pix_Customize_Control.php
- Raw: https://pluginprobe.com/plugins/customify/2.1.3/raw/features/customizer/class-Pix_Customize_Control.php
- Modified: 2015-02-16T08:16:34+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.1.3/code/features/customizer/class-Pix_Customize_Control.php#L10-L20`.

```php
<?php

/**
 * Class Pix_Customize_Control
 *
 * with this class we will overwrite the default markup which WordPress comes with
 */
class Pix_Customize_Control extends WP_Customize_Control {

	/**
	 * Renders the control wrapper and calls $this->render_content() for the internals.
	 *
	 * @since 3.4.0
	 */
	protected function render() {
		$group = '';
		$id    = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
		$class = 'pix_customizer_setting customize-control customize-control-' . $this->type;

		?><li id="<?php echo esc_attr( $id ); ?>" class="<?php echo esc_attr( $class ); ?>">
		<?php $this->render_content(); ?>
		</li><?php
	}
}

```
