Docs for get_post_format_slugs(). props demetris, fixes #15867.

git-svn-id: https://develop.svn.wordpress.org/trunk@17073 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-12-20 10:22:06 +00:00
parent 21ea69a1d7
commit 23339857e5
1 changed files with 8 additions and 0 deletions

View File

@ -5061,6 +5061,14 @@ function get_post_format_strings() {
return $strings;
}
/**
* Retrieves an array of (translated and sanitized) post format slugs.
*
* @since 3.1.0
*
* @uses sanitize_title_with_dashes()
* @return array The array of (translated and sanitized) post format slugs.
*/
function get_post_format_slugs() {
$slugs = array(
'standard' => _x( 'standard', 'Post format slug' ),