From 0bc42a98ccfaac1759653f68930d1bf23ba2ef5a Mon Sep 17 00:00:00 2001 From: nacin Date: Mon, 20 Dec 2010 10:22:06 +0000 Subject: [PATCH] Docs for get_post_format_slugs(). props demetris, fixes #15867. git-svn-id: http://svn.automattic.com/wordpress/trunk@17073 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wp-includes/post.php b/wp-includes/post.php index 1e31e34ad..15f5c4418 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -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' ),