From c546e83a584b47c2c6167a235ead7dac96b88378 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Thu, 25 Apr 2013 02:31:42 +0000 Subject: [PATCH] Add a post_format_meta filter. props alexkingorg. fixes #24162. git-svn-id: http://core.svn.wordpress.org/trunk@24080 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-formats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-formats.php b/wp-includes/post-formats.php index 8013f09d9e..4a20d07397 100644 --- a/wp-includes/post-formats.php +++ b/wp-includes/post-formats.php @@ -120,7 +120,7 @@ function get_post_format_meta( $post_id = 0 ) { $values[$key] = empty( $value ) ? '' : $value; } - return $values; + return apply_filters( 'post_format_meta', $values ); } /**