wordpress-fields.php
1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
// Contains default names and types for standard WordPress fields. Can be filtered with wpf_meta_fields
$wp_fields['first_name'] = array(
'type' => 'text',
'label' => 'First Name',
);
$wp_fields['last_name'] = array(
'type' => 'text',
'label' => 'Last Name',
);
$wp_fields['display_name'] = array(
'type' => 'text',
'label' => 'Profile Display Name'
);
$wp_fields['nickname'] = array(
'type' => 'text',
'label' => 'Nickname',
);
$wp_fields['user_login'] = array(
'type' => 'text',
'label' => 'Username',
);
$wp_fields['user_email'] = array(
'type' => 'text',
'label' => 'E-mail Address',
);
$wp_fields['user_pass'] = array(
'type' => 'text',
'label' => 'Password',
);
$wp_fields['country'] = array(
'type' => 'select',
'label' => 'Country/Region',
);
$wp_fields['description'] = array(
'type' => 'textarea',
'label' => 'Biography',
);
$wp_fields['website'] = array(
'type' => 'text',
'label' => 'Website',
);
$wp_fields['facebook'] = array(
'type' => 'text',
'label' => 'Facebook Page'
);
$wp_fields['twitter'] = array(
'type' => 'text',
'label' => 'Twitter'
);
$wp_fields['google_plus'] = array(
'type' => 'text',
'label' => 'Google+'
);
$wp_fields['user_url'] = array(
'type' => 'text',
'label' => 'Website (URL)'
);
$wp_fields['job_title'] = array(
'type' => 'text',
'label' => 'Job Title',
);