_s: adding instructions on forking _s to the readme and cleaning up a php comment in comments.php that gets missed in the find and replace pattern

git-svn-id: https://wpcom-themes.svn.automattic.com/_s/@8893 d957f892-c61d-0410-b221-f235e6eecf30
This commit is contained in:
Ian Stewart 2012-02-08 13:54:26 +00:00
parent 60d8720ad6
commit 22522ac0c4
2 changed files with 27 additions and 3 deletions

View File

@ -48,7 +48,7 @@
* to use _s_comment() to format the comments.
* If you want to overload this in a child theme then you can
* define _s_comment() and that will be used instead.
* See _s_comment() in _s/functions.php for more.
* See _s_comment() in functions.php for more.
*/
wp_list_comments( array( 'callback' => '_s_comment' ) );
?>

View File

@ -2,8 +2,9 @@
Hi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Some of the interesting things you'll find here include ...
My ultra-minimal CSS might make me look like theme tartare but that means less stuff to get in your way when you're designing your awesome theme. Here are some of the other more interesting things you'll find here ...
* A just right amount of lean, well-commented, modern, HTML5 templates.
* A helpful 404 template.
* A sample custom header implementation in inc/custom-header.php that can be activated by uncommenting one line in functions.php and adding the code snippet found the comments of inc/custom-header.php to your header.php template.
* Custom template tags in inc/template-tags that keep your templates clean and neat and prevent code duplication
@ -13,4 +14,27 @@ Some of the interesting things you'll find here include ...
* A script at js/small-menu.js that makes your menu a toggled dropdown ready for CSS artistry. It's enqueued in functions.php.
* 5 sample CSS layouts in layouts.
* Smartly organized starter CSS in style.css that will help you quickly get your design off the ground.
* The GPL license in license.txt. Make something cool.
* The GPL license in license.txt. :) Use it to make something cool.
=== Getting Started ===
The first thing you want to do is copy the _s directory and change the name to something else. Like, say, megatherium. Then you'll need to do a three-step find and replace on the name in all the templates.
1. Search for _s inside single quotations to capture the text domain.
2. Search for _s_ for to capture all the function names
3. Search for _s with a space before it to replace all the occurrences of it in comments. (Youd replace this with the capitalized version of your theme name.)
or …
Search for:'_s'
Replace with:'megatherium'
Search for:_s_
Replace with:megatherium_
Search for: _s
Replace with: Megatherium
Then, update the stylesheet header in style.css and the links in footer.php with your own information. Next, update or delete this readme.
You're ready to go! The next step is easy to say but hard to do: make an awesome WordPress theme. :)
Good luck!