Skip to content

Modern Profile Styles

John James Jacoby edited this page Sep 18, 2026 · 1 revision

Modern Profile Styles

WP User Profiles includes an optional profile layout inspired by the current WordPress block-editor interface. It keeps the same sections, fields, permissions, and save behavior while giving the navigation and metaboxes a cleaner visual treatment.

The classic layout remains the default.

Classic layout

Classic WP User Profiles layout

Modern layout

Modern WP User Profiles layout

The primary section navigation and any subsection navigation added by integrations use matching horizontal rows. The secondary row has a quieter surface so the hierarchy remains visible without introducing another navigation pattern.

Enable the modern layout

The setting applies site-wide rather than per user. Add this line to a small site plugin, an existing functionality plugin, or another appropriate bootstrap location:

add_filter( 'wp_user_profiles_use_modern_styles', '__return_true' );

Remove the filter, or return false, to restore the classic layout.

Compatibility

Only the presentation changes. Existing section registrations, subsection integrations, metabox callbacks, user data, capabilities, and profile URLs continue to use the same APIs.

Clone this wiki locally