文件操作 - textarea.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/views/options/field-types/textarea.php
编辑文件内容
<?php /** * Textarea field for settings. * * @package Tutor\Views * @subpackage Tutor\Settings * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 2.0.0 */ $field_key = sanitize_key( $field['key'] ); $default = isset( $field['default'] ) ? $field['default'] : false; $value = $this->get( $field_key, $default ); $field_id = sanitize_key( 'field_' . $field_key ); $placeholder = isset( $field['placeholder'] ) ? $field['placeholder'] : $field['desc']; $max_length = isset( $field['maxlength'] ) ? (int) $field['maxlength'] : 0; $rows = isset( $field['rows'] ) ? (int) $field['rows'] : 10; ?> <div class="tutor-option-field-row col-1x145" id="<?php echo esc_attr( $field_id ); ?>"> <?php require tutor()->path . 'views/options/template/common/field_heading.php'; ?> <div class="tutor-option-field-input"> <textarea class="tutor-form-control" name="tutor_option[<?php echo esc_attr( $field_key ); ?>]" <?php if ( $max_length > 0 ) : ?> maxlength="<?php echo esc_attr( $max_length ); ?>" <?php endif; ?> <?php if ( $rows > 0 ) : ?> rows="<?php echo esc_attr( $rows ); ?>" <?php endif; ?> placeholder="<?php echo esc_attr( $placeholder ); ?>"><?php echo wp_kses_post( $value ); ?></textarea> </div> </div>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件