W
by Charles Lecklider
1 (0 reviews)
WP Autoload
Automatically load per-template JavaScript, CSS, and PHP files.
Tested up to WP 3.4 (Current: 6.9.4)
v2.5.1
Current Version v2.5.1
Updated 13 years ago
Last Update on 22 Sep, 2012
Refreshed 6 hours ago
Last Refreshed on
Rank
#47,616
—
No change
Active Installs
1+
-97.5%
KW Avg Position
N/A
—
No change
Downloads
1.8K
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
1,048
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,479 more installs to reach 10+
Rank Changes
Current
#47,615
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 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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
- 2.5.1
- Last Updated
- Sep 22, 2012
- Requires WP
- N/A+
- Tested Up To
- 3.4
- PHP Version
- N/A
- Author
- Charles Lecklider
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 NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,720
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
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 Autoload
WP Autoload looks for files in the same way WordPress looks for templates, but it also loads 'parent' files. Say your theme looks like this: themes/ foobar/ css/ archive.css page.css page-bar.css inc/ page.php page-bar.php js/ archive.js page.js page-bar.js For an archive page, WP Autoload will load: css/archive.css js/archive.js No surprises there. For a normal page, WP Autoload will load: css/page.css inc/page.php js/page.js WP Autoload will then try to create a new WP_Autoload_page object. The class must extend WP_Autoload_Template, e.g.: class WP_Autoload_page extends WP_Autoload_Template { ... } For a page with a slug of bar, WP Autoload will load: page.css and page-bar.css, with page.css as a dependency of page-bar.css page.php and page-bar.php, in that order page.js and page-bar.js, with page.js as a dependency of page-bar.js WP Autoload will then try to create a new WP_Autoload_page_bar object; because page.php is loaded first you can do this: class WP_Autoload_page_bar extends WP_Autoload_page { ... }
For templates where there is no specific stylesheet or script file the performance implications of WP Autoload are negligible. For templates with both a specific stylesheet and script file WP Autoload will add two requests to the overall page load sequence. Typically these extra requests have no significant impact on page load time because they are offset by the reduced size of the common stylesheet.