Introduction to the Hidden Gems Experiment
The WordPress plugin ecosystem is undergoing an unprecedented transformation. Nick Hamze, former product team member at Automattic, has initiated an initiative that could fundamentally change the way WordPress users discover new plugins. The “Hidden Gems” experiment is the answer to a long-standing problem with plugin discoverability on the official WordPress.org directory.
In recent years, we’ve observed a phenomenon where the most popular plugins dominate search results, while lesser-known but often higher-quality extensions remain in the shadows. Nick Hamze decided to change this by introducing a system for rotating “hidden gems” on the Featured Plugins page.
What is the Hidden Gems Experiment?
The Hidden Gems experiment is a systematic attempt to highlight high-quality plugins that, despite excellent ratings and useful features, haven’t gained widespread popularity among WordPress users. Nick Hamze, who previously created the Hidden Gems plugin that scans the WordPress.org directory for well-rated but lesser-known plugins, decided to bring this concept to the official Featured Plugins page.
In practice, this means that every two weeks, the main plugin directory homepage features plugins that have been chosen based on quality and innovation rather than download counts. This “quality over popularity” approach has gained tremendous recognition in the WordPress community.
Impact on the WordPress Plugin Ecosystem
The Case of Ollie’s Menu Designer
One of the most spectacular examples of the experiment’s effectiveness is Ollie’s Menu Designer plugin by Mike McAlister. After just a few days of appearing on the Hidden Gems list, the plugin recorded its best day ever in terms of downloads. Matt Cromwell, who described this phenomenon on X, stated: “If you’ve ever wondered if the .org Plugin Search can drive discoverability, wonder no longer.”
This observation is crucial for plugin developers. It shows that the official WordPress.org page has enormous potential for driving traffic to lesser-known plugins, provided they are appropriately featured. For developers, this represents a new opportunity to gain users without aggressive marketing campaigns.
Community Reaction
The WordPress community’s reaction to the Hidden Gems experiment was overwhelmingly positive. Nicholas Garofalo, Director of Marketing for WordPress.org at Automattic, emphasized on X that “that approach - identify a problem, build a solution, ask for approval once the work is ready - remains one of the most reliable ways change happens in WordPress.”
This comment accurately summarizes the spirit of the experiment. Instead of waiting for formal approval for changes from above, Nick Hamze first built a working solution (the Hidden Gems plugin) and then used its success as an argument for implementing similar changes on the official page. This is a classic example of the “build first, ask later” approach that has been an effective path for implementing changes in the WordPress project for years.
SEO Strategies for WordPress Plugins in 2026
Significance of the Hidden Gems Experiment for Positioning
The Hidden Gems Experiment has far-reaching implications for WordPress plugin SEO strategies. Traditionally, plugin positioning in the WordPress.org directory relied primarily on the number of active installations and user ratings. Plugins with millions of active installations dominated search results, creating a barrier to entry for new, innovative solutions.
The new approach introduced by the Hidden Gems experiment shows that quality and innovation can effectively compete with popularity. For plugin developers, this means it’s worth investing in creating truly valuable products instead of relying solely on tactics to increase download counts.
How to Optimize Your Plugin for Discoverability
For plugin creators who want to take advantage of the new discoverability system, here are key strategies:
-
Focus on Code Quality: Ensure your plugin is written according to WordPress best practices, is bug-free, and is regularly updated.
-
Maintain Good Documentation: Clear and comprehensive documentation is key to plugin success. Users and reviewers appreciate plugins with well-described features.
-
Collect Positive Ratings: Plugins with high ratings (4.5+ stars) have a better chance of being featured in the Hidden Gems experiment.
-
Be Active in the Community: Participation in support forums, responding to user questions, and regular updates show developer engagement.
-
Consider Unique Use Cases: Plugins offering unique features that solve specific problems have a better chance of being featured.
Technical Aspects of the Hidden Gems Experiment
Plugin Selection Algorithm
The selection of plugins for the Hidden Gems experiment is based on several key criteria. First and foremost is code quality and WordPress standards compliance. The plugin must be regularly updated and cannot contain malicious code or user-tracking functions.
The second criterion is innovation. Plugins offering unique features that aren’t available in popular solutions take precedence over “yet another contact form plugin” or “yet another slider plugin.”
The third criterion is growth potential. The team responsible for the experiment considers whether the plugin has the potential to become more popular if it gains more visibility.
Rotation and Updates
The experiment involves a two-week rotation of plugins on the Featured list. This means that every two weeks, WordPress users can discover new, valuable plugins. The system is designed to consistently showcase fresh, innovative solutions instead of promoting the same, dominating plugins.
This rotation has an additional benefit: it gives smaller plugins opportunities to gain visibility during periods when larger plugins aren’t featured. For users, this means regular access to new, interesting tools.
The Future of the Experiment and Its Potential Impact
Development Plans
If the Hidden Gems experiment succeeds, we can expect its expansion to other areas of the WordPress.org directory. This could potentially include themes, which also suffer from discoverability issues similar to plugins.
More advanced AI-based recommendation systems could also be introduced, which could personalize plugin recommendations based on installed extensions and user activity.
Impact on the Plugin Market
The Hidden Gems experiment could have far-reaching consequences for the WordPress plugin market. It could encourage more developers to create innovative plugins, knowing there’s a path to visibility without competing with market giants.
For end users, this means access to a wider range of high-quality tools. Instead of relying on the same, popular solutions, they’ll be able to discover smaller but often better-matched plugins.
How to Use Hidden Gems in Daily Work
Practical Tips for WordPress Users
If you want Hidden Gems rotations to steer your tooling choices instead of billboard plugins alone, repeat this cadence:
-
Regularly Visit the Plugins Page: Check the Featured plugins section on WordPress.org every two weeks to discover new hidden gems.
-
Read Reviews: Before installing a plugin, read reviews and pay attention to comments from users who have tested the plugin in practice.
-
Test on Staging: Always test new plugins on a staging environment before deploying to a production site.
-
Leave Reviews: After testing a plugin, leave a review that will help other users make decisions.
-
Follow Developers: If you find a plugin that suits you, follow its developer to stay updated with new versions.
Tools Supporting Plugin Discovery
In addition to the Hidden Gems experiment, there are several other tools and resources that can help in discovering valuable WordPress plugins:
- Hidden Gems Plugin: Nick Hamze’s original plugin that scans the directory and recommends hidden gems.
- WordPress Forums: The WordPress community on forums and Facebook groups is an excellent place to ask for plugin recommendations.
- Blogs and Newsletters: Follow industry blogs like WP Tavern or The Repository to stay updated with plugin news.
Summary
The Hidden Gems experiment represents a significant step forward in improving WordPress plugin discoverability. The “quality over popularity” approach has the potential to democratize the plugin ecosystem and give innovative solutions a chance that would otherwise remain in the shadows.
For plugin developers, it’s a signal that investing in quality and innovation is worthwhile, instead of relying solely on marketing tactics. For users, it’s a promise of access to a wider range of high-quality tools.
We’ll be watching the development of this experiment with interest. If Nick Hamze and his collaborators maintain their pace of introducing changes, we can expect further improvements in how WordPress users discover and use plugins.
Detailed Technical Selection Criteria
To qualify for the Hidden Gems rotation on WordPress.org, candidates undergo stringent quality assessments:
1. Code Quality and API Compliance
- Zero PHP warnings or notices: The plugin must operate completely clean under strict
WP_DEBUGerror reporting. - Strict capability checks and nonces: Every state-changing request must enforce
current_user_can()and verify cryptographic nonces to prevent unauthorized privilege escalation or CSRF attacks. - Comprehensive input sanitization and output escaping: All dynamic inputs must be sanitized on entry and escaped on output using WordPress core functions (
esc_html,esc_url,wp_kses).
2. Runtime Performance and Asset Hygiene
- Conditional asset loading: CSS and JavaScript assets must only enqueue on screens where the plugin’s functionality is actively rendering, avoiding global frontend bloat.
- Database query efficiency: Plugins must avoid unindexed meta queries, utilize transient caching, and leave clean database states upon uninstallation.
Building a Quality-First Plugin Stack
Modern WordPress engineering prioritizes architectural elegance over raw installation vanity metrics:
- Audit specific technical needs: Define precise operational requirements before browsing repositories. Avoid installing bloated suites when a lightweight single-purpose block suffices.
- Evaluate developer responsiveness: Check the plugin’s WordPress.org support forum for resolution speed and review frequency. An actively maintained indie plugin with 800 active installs frequently delivers cleaner code than an abandoned enterprise monolith.
- Automated staging verification: Always benchmark Core Web Vitals and TTFB in a staging sandbox before deploying any new extension to production.
Growth Strategies for Indie Plugin Developers in 2026
Independent creators without venture funding can leverage structural advantages within the WordPress repository:
- Optimizing the readme.txt for semantic discovery: Clear architecture diagrams, annotated screenshots, and exhaustive FAQ sections significantly increase download conversion rates.
- Embracing the global Polyglots community: Making your plugin 100% translation-ready enables volunteer translators worldwide to localize your strings, driving international adoption in non-English markets.
- Active repository support presence: Resolving support threads within 24 hours builds community trust and earns top-tier 5-star ratings that qualify plugins for curated showcase rotations.
The Broad Impact on WordPress Ecosystem Health
Democratizing plugin visibility revitalizes the open-source community by ensuring that solo engineers and boutique agencies can build viable software businesses on WordPress:
- Rewarding technical excellence over marketing scale: Leveling the discovery playing field fosters genuine technical innovation, strengthens core platform resilience, and provides website owners with superior tools.
- Sustainable open-source culture: Quality engineering, transparent communication, and community stewardship form the ultimate foundation of enduring software value. WordPress thrives because passionate builders continually push its capabilities forward. Embracing technical excellence drives durable business growth. Continuous innovation ensures the open-source ecosystem remains vibrant and competitive.
The Future of Plugin Discovery
Emerging Trends
The plugin discovery landscape is evolving rapidly. Several trends are shaping the future:
-
AI-Powered Recommendations: Machine learning algorithms will help match users with plugins that fit their needs.
-
Personalized Experiences: WordPress.org may offer more personalized plugin recommendations based on site characteristics.
-
Community-Driven Curation: Greater emphasis on community curation and peer recommendations.
-
Integration with Development Tools: Deeper integration with IDEs and development workflows.
Predictions for 2027 and Beyond
Looking ahead, we can expect:
- More sophisticated AI-driven discovery mechanisms
- Better integration between plugin discovery and site needs analysis
- Enhanced collaboration features for plugin developers
- Greater focus on plugin quality and security
How to Stay Ahead
For plugin developers and WordPress users, staying ahead means:
- Embrace Quality: Focus on creating and using high-quality plugins
- Stay Informed: Keep up with WordPress.org developments
- Participate: Engage with the community and experiment
- Adapt: Be ready to adapt to new discovery mechanisms
Conclusion
The Hidden Gems experiment represents a significant step forward in improving WordPress plugin discoverability. The “quality over popularity” approach has the potential to democratize the plugin ecosystem and give innovative solutions a chance that would otherwise remain in the shadows.
For plugin developers, it’s a signal that investing in quality and innovation is worthwhile, instead of relying solely on marketing tactics. For users, it’s a promise of access to a wider range of high-quality tools.
We’ll be watching the development of this experiment with interest. If Nick Hamze and his collaborators maintain their pace of introducing changes, we can expect further improvements in how WordPress users discover and use plugins.
The future of plugin discovery is bright, and the Hidden Gems experiment is leading the way toward a more equitable and quality-focused ecosystem.






