This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Konstantin Obenland 9bc326be66 Merge pull request #224 from JasonHoffmann/master
_s: Align element comment with its corresponding id.
2013-05-25 03:05:55 -07:00
inc _s: Let's not limit the setup function to IS. 2013-05-20 13:02:30 +02:00
js Remove HTML5Shiv from _s. See #215. 2013-05-11 10:00:08 +09:00
languages Rename translations to languages, see #73 and #50 2012-09-17 12:07:40 +04:00
layouts _s: Update layouts to use classes when appropriate. Fixes #55. 2013-02-27 13:35:28 -08:00
404.php _s: Remove .error404 class, it is used by core in `body_class()`. Props 2013-05-25 11:59:09 +02:00
README.md _s: /inc/etras.php is active by default. 2013-03-26 12:02:55 -07:00
archive.php Minor code style clean-up 2013-04-20 01:26:43 +01:00
comments.php Comments.php Spelling Issue 2013-05-20 14:12:09 -04:00
content-page.php Add trailing commas to the last elements of arrays 2013-04-20 16:45:36 +01:00
content-single.php Add trailing commas to the last elements of arrays 2013-04-20 16:45:36 +01:00
content.php Remove trailing whitespace. 2013-05-17 09:34:30 +04:00
footer.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
functions.php _s: Load all modules consistently at the bottom of the file. 2013-05-20 16:07:25 +02:00
header.php Remove HTML5Shiv from _s. See #215. 2013-05-11 10:00:08 +09:00
image.php _s: Better use of template tags in the image template. 2013-05-20 12:59:09 +02:00
index.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
no-results.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
page.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
rtl.css _s: initial fork of Toolbox 2012-01-07 03:25:13 +00:00
screenshot.png _s: Adding a blank screenshot 2012-02-08 20:49:01 +00:00
search.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
searchform.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
sidebar.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
single.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
style.css Remove hgroup from theme. It's dead now: http://www.sitepoint.com/html5-hgroup-element-dropped/. In its place a div will be use that inherits the old class that was being applied to header. 2013-04-23 15:45:23 +09:00

README.md

_s

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.

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.
  • Some small tweaks in /inc/extras.php that can improve your theming experience.
  • Keyboard navigation for image attachment templates. The script can be found in js/keyboard-navigation.js. Its enqueued in functions.php.
  • A script at js/small-menu.js that makes your menu a toggled dropdown on small screens (like your phone), ready for CSS artistry. Its enqueued in functions.php.
  • 5 sample CSS layouts in /layouts: Two sidebars on the left, two sidebars on the right, a sidebar on either side of your content, and two-column layouts with sidebars on either side.
  • Smartly organized starter CSS in style.css that will help you to quickly get your design off the ground.
  • The GPL license in license.txt. :) Use it to make something cool.

Getting Started

If you want to keep it simple, head over to http://underscores.me and generate your _s based theme from there. You just input the name of the theme you want to create, click the "Generate" button, and you get your ready-to-awesomize starter theme.

If you want to set things up manually, download _s from github. 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_ to capture all the function names.
  3. Search for _s (with a space before it) to capture DocBlocks.
  4. Search for _s- to capture prefixed handles.

OR

  • Search for: '_s' and replace with: 'megatherium'
  • Search for: _s_ and replace with: megatherium_
  • Search for:  _s and replace with:  Megatherium
  • Search for: _s- and 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.

Now you're ready to go! The next step is easy to say but harder to do: make an awesome WordPress theme. :)

Good luck!