0byt3m1n1
Path:
/
var
/
www
/
clients
/
client38
/
web37
/
web
/
wp-content
/
plugins
/
us-core
/
usof
/
templates
/
fields
/
[
Home
]
File: text.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Theme Options Field: Text * * Simple text field. * * @var $name string Field name * @var $id string Field ID * @var $field array Field options * * @param $field ['title'] string Field title * @param $field ['description'] string Field title * @param $field ['placeholder'] string Field placeholder * * @var $value string Current value */ $output = '<input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"'; if ( ! empty( $field['placeholder'] ) ) { $output .= ' placeholder="' . esc_attr( $field['placeholder'] ) . '"'; } $output .= ' />'; echo $output;