Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4848 days ago
Is WP Autoload abandoned?
Possibly abandoned (last update 4848 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
Most themes have a single stylesheet, a few JavaScript files, and all the PHP in functions.php. WP Autoload makes it trivial for theme developers to split up CSS, JS, and PHP per template, simplifying development and maintenance. It also makes it much easier to write per-template unit tests.
Installation
- Upload the plugin to your plugins directory
- Activate the plugin through the ‘Plugins’ menu in WordPress
- Check the settings on the configuration page (Settings -> WP Autoload)
Frequently Asked Questions
How do I use this in my theme?
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.cssjs/archive.js
No surprises there.
For a normal page, WP Autoload will load:
css/page.cssinc/page.phpjs/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.cssandpage-bar.css, withpage.cssas a dependency ofpage-bar.csspage.phpandpage-bar.php, in that orderpage.jsandpage-bar.js, withpage.jsas a dependency ofpage-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 { ... }
What about performance?
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.
Review feed
Screenshots
Changelog
2.5.0
- Support for hierarchical post types.
2.1.3
- Bugfix: fix debug warning with E_ALL.
2.1.2
- Bugfix: fix loading base classes.
2.1.1
- Bugfix: remove debug code.
2.1.0
- Support for child themes.
2.0.0
- Per-template classes.
- Better sidebar handling.
1.1.1
- Dependencies configuration bug fix.
1.1.0
- Improved template part list filtering.
1.0.4
- Add enqueue_script() method to allow scripts to be enqueued after wp_head().
1.0.3
- Tag fix.
1.0.2
- Handle single dependencies better.
1.0.1
- Fix minor PHP warning.
1.0
- Initial release.