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
This commit is contained in:
Drew Jaynes 2016-01-25 17:10:57 +00:00
parent 3c88ac14ee
commit 2960ad4cbd

View File

@ -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 );