by Roy Orbitson
1 (0 reviews)
SlashPress
A conduit between your chat service and your WordPress sites.
Tested up to WP 6.8 (Current: 6.9)
v1.2.0
Current Version v1.2.0
Updated 2 months ago
Last Update on 21 Nov, 2025
Synced 12 hours ago
Last Synced on
Rank
#54,321
+3008 this week
Active Installs
1+
-75%
KW Avg Position
8.3
—
No change
Downloads
982
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
44,174
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 9 more installs to reach 10+
Rank Changes
Current
#54,321
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
1.0
0 reviews
Overall
20%
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 | 15 hours ago |
| Mattermost | 7 | — | Tag | 15 hours ago |
| slash commands | 17 | — | Tag | 15 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
- PHP Version
- 7.0 or higher
- Author
- Roy Orbitson
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- 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); } } );