An open API service indexing awesome lists of open source software.

https://github.com/wpessential/wpessential-theme-module

Help to build the WP theme
https://github.com/wpessential/wpessential-theme-module

wordpress wordpress-api wordpress-development wordpress-starter-theme wordpress-theme

Last synced: about 1 year ago
JSON representation

Help to build the WP theme

Awesome Lists containing this project

README

          

# WPEssential Theme Module

Help to build the WP theme

## Used

```php
# Load the autoloader PHP file
require_once get_template_directory() . '/vendor/autoload.php';

# Check the theme module file exists and then do_action for theme modules.
if ( class_exists( '\WPEssential\Theme\ThemeSetup' ) ) {
\WPEssential\Theme\ThemeSetup::constructor();
}
```