我想在readonly的表单输入字段中显示以用户名(显示名称)登录的wordpress。
我已经完成Function Reference/wp get current user但没有成功。
查找我尝试过的代码:
public static function getFormHTML($form) {
global $wpdb, $display_name;
get_currentuserinfo();
$html = '<form>';
/*-------Below line in displaying user display name----------------*/
$html .= '<input name="currentusr" value="' . $current_user->display_name. '" type= "text" readonly />';
$html = '</form>';
我无法弄清楚我做错了什么..
请帮我解决问题......
提前致谢。
答案 0 :(得分:0)
请尝试使用readonly
属性,而不是使用disabled
。例如:
$html .= '<input name="currentusr" value="' . $current_user->display_name . '" type="text" disabled />';