L
by Katz Web Services, Inc.
1 (0 reviews)
Lottery Results
Feature daily lottery results on your website.
Tested up to WP 4 (Current: 6.9)
vtrunk
Current Version vtrunk
Updated 11 years ago
Last Update on 05 Sep, 2014
Synced 7 hours ago
Last Synced on
Rank
#18,338
+13 this week
Active Installs
70+
-6.7%
KW Avg Position
6.2
—
No change
Downloads
6.6K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 80
70+
80+
633
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 4 more installs to reach 80+
Rank Changes
Current
#18,338
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 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| powerball | 1 | — | Tag | 7 hours ago |
| lottery winners | 3 | — | Tag | 7 hours ago |
| lotto | 4 | — | Tag | 7 hours ago |
| lottery results | 7 | — | Tag | 7 hours ago |
| lottery | 16 | — | Tag | 7 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
- trunk
- Last Updated
- Sep 05, 2014
- Requires WP
- 2.8+
- Tested Up To
- 4
- PHP Version
- N/A
- Author
- Katz Web Services, Inc.
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 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 '';
}