My client wants the New User admin page to be composed of a meta box.
add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );
But this seems to be for posts only ($post_type
).
Is there an alternative for the User screen?
Well, as you already know, meta boxes are for post types only…What you can do is to customize the heck out of that screen.
What follows is the code I used on a client’s custom theme.
Originally, it was used with the action hook
admin_print_scripts-profile.php
(which could also be added bellow)./functions.php
:/css/profile.css
:/js/profile.js
: