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
- Host: GitHub
- URL: https://github.com/wpessential/wpessential-theme-module
- Owner: wpessential
- License: gpl-3.0
- Created: 2023-09-11T20:46:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T21:29:29.000Z (over 1 year ago)
- Last Synced: 2024-12-23T21:31:53.615Z (over 1 year ago)
- Topics: wordpress, wordpress-api, wordpress-development, wordpress-starter-theme, wordpress-theme
- Language: PHP
- Homepage: https://wpessential.org
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
}
```