From 4cfa4aaacf87e4007216e57febdb57fa4936a830 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 22 Nov 2010 17:05:14 +0000 Subject: [PATCH] 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 --- wp-includes/post.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index af325fd6c1..66fbb0290a 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -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; }