From 2960ad4cbdcfa2bef95cc8b82a7d1d1258b6d1a4 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 25 Jan 2016 17:10:57 +0000 Subject: [PATCH] Docs: Fix parameter documentation ordering in the hook docs for the `register_taxonomy_args` filter. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36391 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index ad7a379c78..3183a26f6f 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -353,8 +353,8 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) { * @since 4.4.0 * * @param array $args Array of arguments for registering a taxonomy. - * @param array $object_type Array of names of object types for the taxonomy. * @param string $taxonomy Taxonomy key. + * @param array $object_type Array of names of object types for the taxonomy. */ $args = apply_filters( 'register_taxonomy_args', $args, $taxonomy, (array) $object_type );