A modern WordPress starter theme which uses the WP Emerge framework.
This is the WP Emerge Theme project - for the WP Emerge framework please check out https://github.com/htmlburger/wpemerge.
- Documentation
- Development Team
- Comparison Table
- Features
- Requirements
- Directory structure
- Contributing
http://docs.wpemerge.com/#/starter-theme/overview
http://docs.wpemerge.com/#/starter-theme/quickstart
Brought to you by Atanas Angelov and the lovely folks at htmlBurger.
WP Emerge Theme | Sage | Timber | |
---|---|---|---|
View Engine | PHP, Blade, Twig, any | PHP, Blade | Twig |
Routing | โ | โ | โ |
WP Admin Routing | โ | โ | โ |
WP AJAX Routing | โ | โ | โ |
MVC | โโโ | โโโยน | โโโ |
Middleware | โ | โ | โ |
View Composers | โ | โ/โยฒ | โ |
Service Container | โ | โ | โ |
Stylesheets | SASS + PostCSS | SASS + PostCSS | N/Aยณ |
JavaScript | ES6 | ES6 | N/Aยณ |
Front end, Admin, Editor and Login Bundles | โโโโ | โโโโ | N/Aยณ |
Automatic Sprite Generation | โ | โ | N/Aยณ |
Automatic Cache Busting | โ | โ | โ |
WPCS Linting | โ | โ | โ |
Advanced Error Reporting | โ | โ | โ |
WP Unit Tests for your classes | โ | โ | โ |
ยน Sage's Controller is more of a View Composer than a Controller.
ยฒ Sage's Controller provides similar functionality but is limited to 1 composer (controller) per view and vice versa.
ยณ Timber does not provide a front-end build process so you can implement whatever you prefer.
Email any factual inaccuracies to hi@atanas.dev so they can be corrected.
- All features from WP Emerge:
- Gutenberg support.
- SASS + PostCSS for stylesheets. Separate bundles are created for front-end, administration, Gutenberg and login pages.
- ES6 for JavaScript. Separate bundles are created for front-end, administration, Gutenberg and login pages.
- Pure Webpack to transpile and bundle assets, create sprites, optimize images etc.
- Hot Module Replacement for synchronized browser development.
- Autoloading for all classes in your
App\
namespace. - Automatic, fool-proof cache busting for all assets, including ones referenced in styles.
- WPCS, JavaScript and SASS linting and fixing using a single yarn command.
- Single-command optional CSS package installation:
- Normalize.css
- Boostrap 4
- Bulma
- Foundation
- Tachyons
- Tailwind CSS
- Spectre.css
- FontAwesome
- WP Unit Test scaffolding for your own classes.
wp-content/themes/your-theme
โโโ app/
โ โโโ helpers/ # Helper files, add your own here as well.
โ โโโ routes/ # Register your WP Emerge routes.
โ โ โโโ admin.php
โ โ โโโ ajax.php
โ โ โโโ web.php
โ โโโ src/ # PSR-4 autoloaded classes.
โ โ โโโ Controllers/ # Controller classes for WP Emerge routes.
โ โ โโโ Routing/ # Register your custom routing conditions etc.
โ โ โโโ View/ # Register your view composers, globals etc.
โ โ โโโ WordPress/ # Register post types, taxonomies, menus etc.
โ โ โโโ ...
โ โโโ config.php # WP Emerge configuration.
โ โโโ helpers.php # Require your helper files here.
โ โโโ hooks.php # Register your actions and filters here.
โโโ dist/ # Bundles, optimized images etc.
โโโ languages/ # Language files.
โโโ resources/
โ โโโ build/ # Build process configuration.
โ โโโ fonts/
โ โโโ images/
โ โโโ scripts/
โ โ โโโ admin/ # Administration scripts.
โ โ โโโ editor/ # Gutenberg editor scripts.
โ โ โโโ login/ # Login scripts.
โ โ โโโ theme/ # Front-end scripts.
โ โโโ styles/
โ โ โโโ admin/ # Administration styles.
โ โ โโโ editor/ # Gutenberg editor styles.
โ โ โโโ login/ # Login styles.
โ โ โโโ shared/ # Shared styles.
โ โ โโโ theme/ # Front-end styles.
โ โโโ vendor/ # Any third-party, non-npm assets.
โโโ vendor/ # Composer packages.
โโโ views/
โ โโโ layouts/
โ โโโ partials/
โโโ views-alternatives/ # Views for other engines like Blade.
โโโ functions.php # Bootstrap theme.
โโโ screenshot.png # Theme screenshot.
โโโ style.css # Theme stylesheet.
โโโ ...
Add PHP helper files here. Helper files should include function definitions only. See below for information on where to put actions, filters, classes etc.
Add PHP class files here. All clases in the App\
namespace are autoloaded in accordance with PSR-4.
Add images for styling here. Optimized copies will be placed in dist/images/
when running the build process.
Add .css and .scss files to add them to the front-end bundle. Don't forget to @import
them in index.scss
.
These directories are for the admin, editor and login bundles, respectively. They work identically to the main resources/styles/frontend/
directory.
Add JavaScript files here to add them to the frontend bundle. The entry point is index.js
.
These directories are for the admin, editor and login bundles, respectively. They work identically to the main resources/scripts/frontend/
directory.
While views that follow the WordPress template hierarchy should go in the theme root directory (e.g. index.php
, searchform.php
, archive-post.php
etc.), others should go in the following directories:
views/layouts/
- Layouts that other views extend.views/partials/
- Small snippets that are meant to be reused throughout other views.views/
- Named custom post templates or views that don't fit anywhere else.
Avoid adding any PHP logic in any of these views, unless it pertains to layouting (PHP logic should go into helper files or WP Emerge controllers).
WP Emerge Theme is completely open source and we encourage everybody to participate by:
- Reviewing
.github/CONTRIBUTING.md
. - โญ the project on GitHub (https://github.com/htmlburger/wpemerge-theme)
- Posting bug reports (https://github.com/htmlburger/wpemerge-theme/issues)
- (Emailing security issues to hi@atanas.dev instead)
- Posting feature suggestions (https://github.com/htmlburger/wpemerge-theme/issues)
- Posting and/or answering questions (https://github.com/htmlburger/wpemerge-theme/issues)
- Submitting pull requests (https://github.com/htmlburger/wpemerge-theme/pulls)
- Sharing your excitement about WP Emerge with your community