From a60932bf66ac1c507ead54b9dd96c44bb6da318b Mon Sep 17 00:00:00 2001 From: Jon Cave Date: Wed, 8 Feb 2012 17:12:02 +0000 Subject: [PATCH] Post formats should show_in_nav_menus when the current theme supports them. Props filosofo, nacin. Fixes #16390. git-svn-id: https://develop.svn.wordpress.org/trunk@19876 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 5f377f6748..9e28698281 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -107,7 +107,7 @@ function create_initial_taxonomies() { 'rewrite' => $rewrite['post_format'], 'show_ui' => false, '_builtin' => true, - 'show_in_nav_menus' => false, + 'show_in_nav_menus' => current_theme_supports( 'post-formats' ), ) ); } add_action( 'init', 'create_initial_taxonomies', 0 ); // highest priority