by Roy Orbitson
0 (0 reviews)
SlashPress
A conduit between your chat service and your WordPress sites.
Tested up to WP 6.8.5 (Current: 6.9.4)
v1.2.0
Current Version v1.2.0
Updated 4 months ago
Last Update on 21 Nov, 2025
Refreshed 6 hours ago
Last Refreshed on
Rank
#56,454
—
No change
Active Installs
0+
-100%
KW Avg Position
9
—
No change
Downloads
1.1K
+6 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
27,161
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 10 more installs to reach 10+
Rank Changes
Current
#56,454
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| ChatOps | 1 | — | Tag | 23 hours ago |
| Mattermost | 7 | — | Tag | 23 hours ago |
| slash commands | 19 | — | Tag | 23 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.2.0
- Last Updated
- Nov 21, 2025
- Requires WP
- 4.7.1+
- Tested Up To
- 6.8.5
- PHP Version
- 7.0 or higher
- Author
- Roy Orbitson
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about SlashPress
Running any task any task that you want to start immediately from the comfort of your chat app. It's great for providing instant summaries, triggering actions like backups, clearing/preloading caches of optimisation plugins, updating copies of remote data. Your code can respond with anything you need, from a simple OK to a full tabulated response using Markdown: |Order stat|Count| |:---|---:| |New orders today|27| |Orders to fulfil|8| |Unpaid orders|2|
A simple example is probably best: add_action( 'slashpress_help' , function(SlashPress\Command $slash, string $help_terms) { $slash->addHelp('flubbers', '`flubbers` Gets the latest map of nearby flubbers.') ->addHelp('gronks', '`gronks` Updates the list of the top 100 gronks and their values.') ->addHelp('uncache', 'Site content not looking quite right? Use `uncache` to clear the out the generated pages.'); } , 100 , 2 ); add_filter( 'slashpress_command' , function($initial_response, SlashPress\Command $slash) { if (!$slash->known) { $text = trim($slash->data['text']); switch ($text) { case 'flubbers': case 'gronks': $slash->handled = true; wp_schedule_single_event(time(), 'big_data_fetch_cron_event_hook', [$text, $slash]); return 'Big data fetch queued.'; case 'uncache': $slash->handled = true; if (function_exists('w3tc_flush_posts')) { w3tc_flush_posts(); return 'Cleared the post cache.'; } return 'No cache found to clear.'; } } return $initial_response; } , 10 , 2 ); add_action( 'big_data_fetch_cron_event_hook' , function(string $what = null, SlashPress\Command $slash = null) { $results_bad = $results = []; if (null == $what || 'flubbers' == $what) { if (fetch_flubbers()) { $results[] = 'Flubbers fetched.'; } else { $results_bad[] = $results[] = 'Could not fetch the flubbers.'; } } if (null == $what || 'gronks' == $what) { if (fetch_gronks()) { $results[] = 'Gronks fetched.'; } else { $results_bad[] = $results[] = 'Could not fetch the gronks.'; } } if ($slash) { if ($slash->canRespondDelayed()) { $slash->respondDelayed(implode(" \n", $results)); } } elseif ($results_bad) { echo implode(" \n", $results_bad); } } );