W
by James Koster
5 (5 reviews)
WP ragadjust
Includes ragadjust.js to add subtle improvements to your typography.
Tested up to WP 4.0.38 (Current: 6.9.4)
v1.0.0
Current Version v1.0.0
Updated 11 years ago
Last Update on 04 Sep, 2014
Refreshed 6 hours ago
Last Refreshed on
Rank
#26,697
+243 this week
Active Installs
20+
—
No change
KW Avg Position
13.3
—
No change
Downloads
2.9K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(5 reviews)
Next Milestone 30
20+
30+
4,486
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 5 more installs to reach 30+
Rank Changes
Current
#26,697
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
5.0
5 reviews
Overall
100%
5
5
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| preposition | 1 | — | Tag | 20 hours ago |
| hyphenation | 7 | — | Tag | 20 hours ago |
| rag | 32 | — | Tag | 20 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.0
- Last Updated
- Sep 04, 2014
- Requires WP
- 3.3+
- Tested Up To
- 4.0.38
- PHP Version
- N/A
- Author
- James Koster
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 5
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,719
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
Qi Addons For Elementor
200K+ installs
#252
MW
MW WP Form
200K+ installs
#266
WPFront Scroll Top
200K+ installs
#272
Frequently Asked Questions
Common questions about WP ragadjust
By default ragajust is applied to p tags.
Yes, you can use the wpr_elements filter to make adjustments to the selectors. To add a new selector: add_filter( 'wpr_elements', 'wpr_new_selectors' ); function wpr_new_selectors( $elements ) { $elements[] .= '.textwidget'; // Adjust text widgets in addition to p return $elements; } To remove a current selector: add_filter( 'wpr_elements', 'wpr_remove_elements' ); function wpr_remove_elements( $elements ) { unset( $elements['0'] ); // Unset 'p'. return $elements; } To use your own, entirely unique selectors: add_filter( 'wpr_elements', 'wpr_custom_elements' ); function wpr_custom_elements( $elements ) { $elements = array( 'article', 'footer', ); return $elements; } These snippets should go in your child themes functions.php file.
Yes. By default all methods will be used to fix all violations. If however you only want to fix prepositions and ignore everything else you can do so via the wpr_method filter like so: add_filter( 'wpr_method', 'wpr_custom_method' ); function wpr_custom_method( $method ) { $method = 'prepositions'; return $method; } The method options are: emphasis – Text of three or less words in bold or italics does not break across lines. small-words – Breaks lines before words of three or less characters. prepositions – Breaks lines before prepositions. dashes – Breaks lines before hyphens and dashes. all (default) - All of the above.