PHPackages                             moonwalkingbits/wordpress-autoloader - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. moonwalkingbits/wordpress-autoloader

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

moonwalkingbits/wordpress-autoloader
====================================

A class loader for the WordPress coding standards.

0.1.1(5y ago)23661GPL-3.0-or-laterPHPPHP &gt;=7.4CI failing

Since Jun 12Pushed 5y ago1 watchersCompare

[ Source](https://github.com/moonwalkingbits/wordpress-autoloader)[ Packagist](https://packagist.org/packages/moonwalkingbits/wordpress-autoloader)[ RSS](/packages/moonwalkingbits-wordpress-autoloader/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (6)Versions (3)Used By (1)

WordPress Autoloader
====================

[](#wordpress-autoloader)

A class loader for the [WordPress coding standards](https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/).

When taking the object oriented approach to developing in PHP, autoloading can get rid of all the include/require statements in your code. Instead of manually including the file before you use the class, or having to check if the class is available you just use it. If it is not yet included it will be automatically included by the class loader.

The only class file you need to include is the autoloader. Or if you use this library as a composer package it is enough to include composer's `autoload.php`. After you've set it up it will take care of the rest of the includes.

```
