Add the audio post format, the final format we plan to support. see #14746.

git-svn-id: http://svn.automattic.com/wordpress/trunk@16534 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-11-22 17:05:14 +00:00
parent d2ee517961
commit 0d56b69953
1 changed files with 2 additions and 1 deletions

View File

@ -5254,7 +5254,8 @@ function get_post_format_strings() {
'image' => _x( 'Image', 'Post format' ),
'quote' => _x( 'Quote', 'Post format' ),
'status' => _x( 'Status', 'Post format' ),
'video' => _x( 'Video', 'Post format' )
'video' => _x( 'Video', 'Post format' ),
'audio' => _x( 'Audio', 'Post format' ),
);
return $strings;
}