-
Notifications
You must be signed in to change notification settings - Fork 0
User Meta
rogertm edited this page Sep 14, 2023
·
8 revisions
Podemos agregar custom fields a la página de edición de cada usuario creando una nueva clase hija de WASP_User_Meta
<?php
class My_Plugin_User_Meta extends WASP_User_Meta
{
function fields()
{
$fields = array(
'field_name' => array(
'label' => __( 'Title', 'text-domain' ),
'meta' => 'field_name'
),
/** more fields here */
);
return $fields;
}
}
new My_Plugin_User_Meta;- Hook
show_user_profile. - Hook
edit_user_profile. - Hook
user_new_form. - Hook
personal_options_update. - Hook
edit_user_profile_update. - Hook
user_register.