- Licensed under GPLv2 or later. :) Use it to make something cool.
Required : gulp and bower.
$ npm install --global bower gulp
next step
$ cd path/to/wp-content/themes/media-assembly-kit $ bower install $ npm install $ gulp init
If you want to set things up manually, download mak
from GitHub. The first thing you want to do is copy the mak
directory and change the name to something else (like, say, mytheme
), and then you'll need to do a five-step find and replace on the name in all the templates.
- Search for
'mak'
(inside single quotations) to capture the text domain. - Search for
mak_
to capture all the function names. - Search for
Text Domain: mak
in style.css. - Search for
mak
(with a space before it) to capture DocBlocks. - Search for
mak-
to capture prefixed handles.
OR
- Search for:
'mak'
and replace with:'mytheme'
- Search for:
mak_
and replace with:mytheme_
- Search for:
Text Domain: mak
and replace with:Text Domain: mytheme
in style.css. - Search for:
mak
and replace with:Megatherium
- Search for:
mak-
and replace with:mytheme-
Good luck!