From 3ad1c8897cae71b33772049516ee9b0e25fa062a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 2 May 2014 11:29:13 +0000 Subject: [PATCH] Correct 'show_in_menu' parameter description in register_taxonomy(). fixes #27943. Built from https://develop.svn.wordpress.org/trunk@28241 git-svn-id: http://core.svn.wordpress.org/trunk@28069 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index df209a50e1..4b423b4606 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -276,9 +276,9 @@ function is_taxonomy_hierarchical($taxonomy) { * - public - If the taxonomy should be publicly queryable; //@TODO not implemented. * * Defaults to true. * - hierarchical - Whether the taxonomy is hierarchical (e.g. category). Defaults to false. - * - show_ui -Whether to generate a default UI for managing this taxonomy in the admin. + * - show_ui - Whether to generate a default UI for managing this taxonomy in the admin. * * If not set, the default is inherited from public. - * - show_in_menu - Where to show the taxonomy in the admin menu. + * - show_in_menu - Whether to show the taxonomy in the admin menu. * * If true, the taxonomy is shown as a submenu of the object type menu. * * If false, no menu is shown. * * show_ui must be true.