⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 profile-update.php

📁 php 开发的内容管理系统
💻 PHP
字号:
<?phprequire_once('admin.php');check_admin_referer('update-profile_' . $user_ID);if ( !$_POST )	die( __('No post?') );$errors = edit_user($user_ID);if (count($errors) != 0) {	foreach ($errors as $id => $error) {		echo $error . '<br/>';	}	exit;}if ( !isset( $_POST['rich_editing'] ) )	$_POST['rich_editing'] = 'false';update_user_option( $current_user->id, 'rich_editing', $_POST['rich_editing'], true );do_action('personal_options_update');if ( 'profile' == $_POST['from'] )	$to = 'profile.php?updated=true';else	$to = 'profile.php?updated=true';wp_redirect( $to );exit;?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -