This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
Releases: aubreypwd-old/wpkickstart
Releases · aubreypwd-old/wpkickstart
2.0.0
This release introduces a new concept that introduces mobility of things you build. It separates out services (think of these as features) and components (think of these as reusable things services use to do things) into services/
and components/
.
The idea is that a service or a component (really just a folder of files) can have it's own classes, Javascripts, CSS, etc and each can move to other wpkickstart frameworks by moving their folder into the other one with minor code changes for it to work.
This should make the things you build in wpkickstart easily re-usable in other projects built on wpkickstart.
- New Services and Components architecture (note component namespace changes)
wp
CLI replacements, seewp kickstart build
after you activate wpkickstart to set it up for your specific project- Easier
wp
based install, see Installation - More class flexibility (now if you
new Anything()
it will automatically autoloadclass-anything.php
no matter where you put it)
1.2.0
1.1
This is based off of some of 1.0's uses in different projects and has been improved to be more stable!
- Added
App::version()
andApp::header()
methods for easy access to version and header information - Added Grunt for easy
.pot
file creation, etc - Adds
App->wp-debug
for easyWP_DEBUG
detection - Uses
App::attach()
method to attach new classes (must add manually) - Uses
App::hooks()
method to run hooks when WP is ready (must add manually) - Adds better
app()
callback and global$app
that can alternatively be called usingglobal $app
- Hardened
phpunit
testing for a good starting point for how the framework should work, you should be able to add additional tests with ease