L
by Zack Katz
0 (0 reviews)
Lottery Results
Feature daily lottery results on your website.
Tested up to WP 4.0.38 (Current: 6.9.4)
v1.0
Current Version v1.0
Updated 11 years ago
Last Update on 06 Sep, 2014
Refreshed 6 hours ago
Last Refreshed on
Rank
#17,736
—
No change
Active Installs
80+
—
No change
KW Avg Position
6.4
—
No change
Downloads
6.7K
+2 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 90
80+
90+
203
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 3 more installs to reach 90+
Rank Changes
Current
#17,736
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 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| powerball | 2 | — | Tag | 12 hours ago |
| lottery winners | 3 | — | Tag | 12 hours ago |
| lotto | 5 | — | Tag | 12 hours ago |
| lottery results | 6 | — | Tag | 12 hours ago |
| lottery | 16 | — | Tag | 12 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.0
- Last Updated
- Sep 06, 2014
- Requires WP
- 2.8+
- Tested Up To
- 4.0.38
- PHP Version
- N/A
- Author
- Zack Katz
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 Lottery Results
This plugin is released under a GPL license.
lottery_widget, lottery_widget_{$widget_number}
lottery_results
lottery_game_name
lottery_game_date
lottery_game_caption, lottery_game_caption_{$state_code}, lottery_game_caption_{$state_code}_{$game_id}
lottery_game_bonus, lottery_game_bonus_{$state_code}, lottery_game_bonus_{$state_code}_{$game_id}
lottery_game_multiplier, lottery_game_multiplier_{$state_code}, lottery_game_multiplier_{$state_code}_{$game_id}
lottery_game_wildcard, lottery_game_wildcard_{$state_code}, lottery_game_wildcard_{$state_code}_{$game_id}, lottery_game_wildcard_result
lottery_thank_you_link
How do I use the `apply_filters()` functionality?
If you want to change some code in the widget, you can use the WordPress add_filter() function to achieve this.
You can add code to your theme's functions.php file that will modify the widget output. Here's an example:
function my_example_function($widget) {
// The $widget variable is the output of the widget
// This will replace 'this word' with 'that word' in the widget output.
$widget = str_replace('this word', 'that word', $widget);
// Make sure to return the $widget variable, or it won't work!
return $widget;
}
add_filter('lottery_widget', 'my_example_function');
How do I remove the titles of the games (the captions)?
If you want to remove game captions from the widget, add the following to your active theme's functions.php file:
add_filter('lottery_game_caption', 'lottery_return_no_caption');
function lottery_return_no_caption($caption = null) {
return '';
}
lottery_results
lottery_game_name
lottery_game_date
lottery_game_caption, lottery_game_caption_{$state_code}, lottery_game_caption_{$state_code}_{$game_id}
lottery_game_bonus, lottery_game_bonus_{$state_code}, lottery_game_bonus_{$state_code}_{$game_id}
lottery_game_multiplier, lottery_game_multiplier_{$state_code}, lottery_game_multiplier_{$state_code}_{$game_id}
lottery_game_wildcard, lottery_game_wildcard_{$state_code}, lottery_game_wildcard_{$state_code}_{$game_id}, lottery_game_wildcard_result
lottery_thank_you_link
How do I use the `apply_filters()` functionality?
If you want to change some code in the widget, you can use the WordPress add_filter() function to achieve this.
You can add code to your theme's functions.php file that will modify the widget output. Here's an example:
function my_example_function($widget) {
// The $widget variable is the output of the widget
// This will replace 'this word' with 'that word' in the widget output.
$widget = str_replace('this word', 'that word', $widget);
// Make sure to return the $widget variable, or it won't work!
return $widget;
}
add_filter('lottery_widget', 'my_example_function');
How do I remove the titles of the games (the captions)?
If you want to remove game captions from the widget, add the following to your active theme's functions.php file:
add_filter('lottery_game_caption', 'lottery_return_no_caption');
function lottery_return_no_caption($caption = null) {
return '';
}