Add a post_format_meta filter.

props alexkingorg. fixes #24162.

git-svn-id: https://develop.svn.wordpress.org/trunk@24080 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2013-04-25 02:31:42 +00:00
parent 53de215895
commit 5c78df14f8
1 changed files with 1 additions and 1 deletions

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