Skip to content

Filters

Aurora Admin’s one public filter.

The only filter Aurora Admin currently exposes. It controls whether the Vue shell (sidebar, toolbar, global search, and screen framing) renders on the current request.

apply_filters( 'aurora_admin_shell_enabled', true );

Return false to fall back to native WordPress admin chrome for the current request — this is exactly how Aurora’s own Setup Wizard disables the shell on its full-screen onboarding page:

add_filter( 'aurora_admin_shell_enabled', function ( $enabled ) {
if ( isset( $_GET['page'] ) && $_GET['page'] === 'my-plugin-fullscreen-page' ) {
return false;
}
return $enabled;
} );

Aurora doesn’t currently expose additional public filters for customizing individual screens, fields, or data. Also see Security.php’s emoji_svg_url — that’s a core WordPress filter Aurora happens to call through, not an Aurora-specific one.