BuilderChild-Default
(Difference between revisions)
(Added "How to enable Post Formats") |
m |
||
| Line 15: | Line 15: | ||
Also see http://codex.wordpress.org/Post_Formats#Using_Formats | Also see http://codex.wordpress.org/Post_Formats#Using_Formats | ||
| + | |||
| + | =Item 2= | ||
| + | |||
| + | =Item 3= | ||
| + | |||
| + | =Item 4= | ||
Revision as of 04:19, March 3, 2011
Contents |
How to enable Post Formats
WordPress 3.1 includes a new feature called Post Formats that lets the site admin enable additional post formats besides the default one termed as "Standard" when creating/editing a post.
To use this feature, add the following to your theme's functions.php:
// ADD POST FORMATS add_theme_support( 'post-formats', array( 'aside', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video', 'audio' ) );
If you have not used functions.php in BuilderChild-Default so far, download this file, name it as functions.php and upload it to your child theme directory, i.e., to wp-content/themes/BuilderChild-Default.
Also see http://codex.wordpress.org/Post_Formats#Using_Formats
