Properly highlight selected menu #305
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Proposed changes
This change synchronizes the WordPress admin menu's active state with our React application's routes in the Bluehost plugin. Currently, when navigating through our React-based plugin pages, the WordPress admin menu doesn't properly highlight the active menu item, creating a disconnected user experience.
The solution implements a JavaScript-based sync mechanism that:
This ensures users always have a clear visual indication of their current location within the plugin.
Type of Change
Production
To reproduce the original bug:
Development
Video
Screen.Recording.2025-06-02.at.5.40.44.PM.mov
Checklist
Pre-deployment Checklist
Post-deployment Checklist
How can the change be verified?
Further comments
The implementation uses WordPress's native menu classes (
current
,wp-has-current-submenu
,wp-menu-open
) to maintain consistency with WordPress core behavior. We considered alternative approaches:Future improvements could include: