# pixcodes/2.3.8/params/text.php

PixCodes, version 2.3.8. 14 lines.

- Page: https://pluginprobe.com/plugins/pixcodes/2.3.8/code/params/text.php
- Raw: https://pluginprobe.com/plugins/pixcodes/2.3.8/raw/params/text.php
- Modified: 2026-05-17T19:21:48+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/pixcodes/2.3.8/code/params/text.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

$class= "span12";
if ( isset($param['admin_class'] ) ) $class = $param['admin_class'];
if ( isset($param['is_content'] ) ) $is_content = 'class="is_shortcode_content"'; else { $is_content = ''; } ?>

<span class="<?php echo esc_attr( $class ); ?>" >
    <label for="<?php echo esc_attr( $param['param_key'] ); ?>"><?php echo esc_html( $param['name'] ); ?></label>
    <input type="<?php echo esc_attr( $param['type'] ); ?>" name="<?php echo esc_attr( $param['param_key'] ); ?>" <?php echo wp_kses_data( $is_content ); ?>/>
</span>

```
