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
This commit is contained in:
Mark Jaquith 2013-04-25 02:31:42 +00:00
parent d9d5c5eb03
commit c546e83a58

View File

@ -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 );
}
/**