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
michiecat 4c6d950f14 Merge pull request #323 from davidakennedy/focusable-skip-link
Make skip link focusable
2013-10-07 09:50:27 -07:00
inc Merge branch 'master' of https://github.com/davidakennedy/_s into titles 2013-09-25 14:59:11 -07:00
js Fixed minor WordPress coding standard issues. 2013-09-30 22:32:42 -07:00
languages _s: Update pot file to reflect recent changes in public strings. 2013-09-25 15:10:41 -07:00
layouts _s: Use `<main>` element for main content. 2013-07-30 12:12:45 -07:00
404.php Removed extra lines 2013-09-14 03:51:56 -07:00
README.md Corrected file name 2013-09-15 08:08:46 -07:00
archive.php First round of removing title attributes. 2013-08-23 23:48:19 -04:00
comments.php minor code comment comma grammar fixes 2013-08-21 12:04:29 -05:00
content-page.php Add trailing commas to the last elements of arrays 2013-04-20 16:45:36 +01:00
content-single.php First round of removing title attributes. 2013-08-23 23:48:19 -04:00
content.php _s: Don't show separator between meta data. Fixes #72. 2013-06-27 07:03:43 -07:00
footer.php Merge branch 'master' of https://github.com/davidakennedy/_s into titles 2013-09-25 14:59:11 -07:00
functions.php Remove WordPress.com-specific functions and definitions require line from functions.php; wpcom.php is now automatically included via plugin on WordPress.com. 2013-07-24 16:04:56 -07:00
header.php Make skip link focusable. 2013-10-01 21:30:53 -04:00
image.php Merge branch 'master' of https://github.com/davidakennedy/_s into titles 2013-09-25 14:59:11 -07:00
index.php minor code comment comma grammar fixes 2013-08-21 12:04:29 -05:00
no-results.php _s: Move away from using `<article>` for content that is not a post, 2013-07-11 12:12:59 -07:00
page.php _s: Use `<main>` element for main content. 2013-07-30 12:12:45 -07:00
rtl.css _s: initial fork of Toolbox 2012-01-07 03:25:13 +00:00
screenshot.png Optimized screenshot image - 93.8% savings 2013-08-21 11:53:25 -05:00
search.php _s: Use `<main>` element for main content. 2013-07-30 12:12:45 -07:00
searchform.php Correctly escape attribute text in search form template. 2013-09-13 13:51:09 -07:00
sidebar.php Ditch all @since DocBlocks from theme. 2013-03-18 14:53:23 -05:00
single.php _s: Use `<main>` element for main content. 2013-07-30 12:12:45 -07:00
style.css Fixed minor WordPress coding standard issues. 2013-09-30 22:32:42 -07: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.php 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-image-navigation.js. It's enqueued in functions.php.
  • A script at js/navigation.js that makes your menu a toggled dropdown on small screens (like your phone), ready for CSS artistry. It's enqueued in functions.php.
  • 2 sample CSS layouts in layouts for a sidebar on either side of your content.
  • Smartly organized starter CSS in style.css that will help you to quickly get your design off the ground.
  • Licensed under GPLv2 or later. :) 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 five-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.
  5. Search for Text Domain: _s in style.css.

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-
  • Search for: Text Domain: _s and replace with: Text Domain: megatherium in style.css.

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!