Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #112

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Skeleton WordPress Theme
# Skeleton WordPress Theme

For new installations, you may wish to install the [latest stable version from wordpress.org](http://wordpress.org/themes/smpl-skeleton).

Expand All @@ -14,7 +14,7 @@ __Notice: Before updating Skeleton, please see the notes below as there are thre
Why? As of version 2.1.x, the options formerly located within the Options Framework (under Appearance → Theme Options) have been moved to the native WP theme customizer to allow for acceptance into the WP.org theme repository. If you'd prefer to continue using the Options framework, please switch to the the [2.x-options-framework](https://github.com/simplethemes/skeleton_wp/tree/2.x-options-framework) branch. See additional notes regarding shortcodes below.


##About
## About

Skeleton, authored by Casey Lee at [Simple Themes](http://www.simplethemes.com "WordPress Themes") is a simple, responsive WordPress theme based on the Skeleton Boilerplate.
It has several useful shortcodes, such as tabs, toggles, cross-browser CSS3 buttons, and layout columns.
Expand Down Expand Up @@ -46,11 +46,11 @@ If you need to customize any of theme options, copy the parent theme options.php
To override any of the parent theme functions, just copy the function(s) from the parent theme into your child theme's functions.php file.
Skeleton will always give priority to the child theme.

##Shortcodes
## Shortcodes

Because Skeleton is now [hosted in the wordpress.org theme repository](http://wordpress.org/themes/smpl-skeleton), Skeleton's shortcodes and additional styles are considered "plugin territory" and therefore must be installed separately in order to work properly. If you're using Skeleton and would like to take advantage of these shortcodes within the theme, please [download and install the smpl-shortcodes plugin](http://wordpress.org/plugins/smpl-shortcodes/). You can the shortcodes in action on the [shortcodes demo page](http://demos.simplethemes.com/skeleton/documentation).

###Callouts
### Callouts

A callout is (by default) a rounded cornered styled inset box. It has two arguments:

Expand All @@ -77,7 +77,7 @@ A callout is (by default) a rounded cornered styled inset box. It has two argume

----

###Fluid Columns
### Fluid Columns

You've seen these before. The fractional shortcode combinations allow you to insert scalable columns into your content. The only rule here is, the last column must have a suffix of '_last'. See the example below.

Expand Down Expand Up @@ -110,15 +110,15 @@ Available Options – Up to 6 columns

----

###Cross-Browser CSS3 Buttons
### Cross-Browser CSS3 Buttons
Tested in IE7,IE8,IE9,Webkit, and Mozilla browsers.
[Preview all colors and sizes](http://demos.simplethemes.com/skeleton/button-styles)

[button align="center" color="white" size="small" link="http://www.simplethemes.com"]Small Button[/button]

----

###Tabs
### Tabs
You can create tabs content within your content as well. Each tab needs a unique id (identifier) in order to work.

[See a preview of the tabs in action here](http://demos.simplethemes.com/skeleton/documentation#t1Tab)
Expand All @@ -131,7 +131,7 @@ You can create tabs content within your content as well. Each tab needs a unique

----

###Accordion Toggles
### Accordion Toggles
[See them in action here.](http://demos.simplethemes.com/skeleton/documentation#gist-1142632)

[toggle title="Button text One"]
Expand All @@ -148,47 +148,47 @@ You can create tabs content within your content as well. Each tab needs a unique

----

###Latest Posts
### Latest Posts

Insert a list of your latest posts from specified category(s) into any page with optional thumbnail and excerpt.

[latest excerpt="true" thumbs="true" width="50" height="50" num="5" cat="8,10,11"]

----

###Related Posts
### Related Posts

Insert a list of related (tagged) posts.

[related_posts]

----

###Raw HTML
### Raw HTML

Sometimes the WordPress editor will strip out your more advanced markup. This can be a real drag. By wrapping your code in [raw] tags, you can eliminate this issue.

[raw] YOUR SAFE HTML CODE [/raw]

----

###Clearing
### Clearing

If you ever need to clear an element, you can use the “clear” shortcode below.

[clear]

----

###Clear with Horizontal line:
### Clear with Horizontal line:

Similar to “clear”, this does the same thing but adds a horizontal line below.

[clearline]

----

##Layout Customization Hooks
## Layout Customization Hooks

You can find a list of these functions in the top of the functions.php file:

Expand Down