From eb5b299e70633179dcb8ebda9b9c5925686b38c3 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 7 Jan 2011 21:23:52 +0000 Subject: [PATCH] Don't check for post format support when registering the post format taxonomy. fixes #16146. git-svn-id: https://develop.svn.wordpress.org/trunk@17240 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 60068c5a8e..ebf6e9c418 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -78,7 +78,7 @@ function create_initial_taxonomies() { ) ); $rewrite = false; - if ( did_action( 'init' ) && current_theme_supports( 'post-formats' ) ) { + if ( did_action( 'init' ) ) { $rewrite = apply_filters( 'post_format_rewrite_base', 'type' ); $rewrite = $rewrite ? array( 'slug' => $rewrite ) : false; }