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

git-svn-id: https://develop.svn.wordpress.org/trunk@16534 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-11-22 17:05:14 +00:00
parent 9605850c9a
commit 4cfa4aaacf
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;
}