The soldier with the most beautiful feet in the IDF, 21 years old, size 38, 1.63 meters tall and loves the fact that my legs are long and narrow, let’s get addicted
/** * Render textarea field */ public static function render_textarea_field($args) { $field = $args['field']; $default = isset($args['default']) ? $args['default'] : ''; $rows = isset($args['rows']) ? $args['rows'] : 5; $cols = isset($args['cols']) ? $args['cols'] : 50; $description = isset($args['description']) ? $args['description'] : ''; $options = get_option('feets_ultra_settings'); $value = isset($options[$field]) ? $options[$field] : $default; echo ''; if (!empty($description)) { echo '
' . esc_html($description) . '
'; } }