Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
www
/
wp-content
/
themes
/
flatsome
/
inc
/
admin
/
kirki
/
field
/
📝 Editing: class-kirki-field-dimension.php
<?php /** * Override field methods * * @package Kirki * @subpackage Controls * @copyright Copyright (c) 2020, David Vongries * @license https://opensource.org/licenses/MIT * @since 2.3.2 */ /** * Field overrides. */ class Kirki_Field_Dimension extends Kirki_Field { /** * Sets the control type. * * @access protected */ protected function set_type() { $this->type = 'kirki-dimension'; } /** * Sanitizes the value. * * @access public * @param string $value The value. * @return string */ public function sanitize( $value ) { return sanitize_text_field( $value ); } }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/www/wp-content/themes/flatsome/inc/admin/kirki/field