X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/4feeb71a9d812a9ae371c28a3d8b442a4394ded7..607b7e02d77e7326161e8ec15639052d2040f745:/wp-includes/category.php diff --git a/wp-includes/category.php b/wp-includes/category.php index a89b4106..08d18c0a 100644 --- a/wp-includes/category.php +++ b/wp-includes/category.php @@ -10,14 +10,14 @@ * Retrieve list of category objects. * * If you change the type to 'link' in the arguments, then the link categories - * will be returned instead. Also all categories will be updated to be backwards + * will be returned instead. Also all categories will be updated to be backward * compatible with pre-2.3 plugins and themes. * * @since 2.1.0 * @see get_terms() Type of arguments that can be changed. * * @param string|array $args { - * Optional. Arguments to retrieve categories. See {@see get_terms()} for additional options. + * Optional. Arguments to retrieve categories. See get_terms() for additional options. * * @type string $taxonomy Taxonomy to retrieve terms for. In this case, default 'category'. * } @@ -30,19 +30,19 @@ function get_categories( $args = '' ) { $taxonomy = $args['taxonomy']; /** - * Filter the taxonomy used to retrieve terms when calling {@see get_categories()}. + * Filters the taxonomy used to retrieve terms when calling get_categories(). * * @since 2.7.0 * * @param string $taxonomy Taxonomy to retrieve terms from. - * @param array $args An array of arguments. See {@see get_terms()}. + * @param array $args An array of arguments. See get_terms(). */ $taxonomy = apply_filters( 'get_categories_taxonomy', $taxonomy, $args ); // Back compat if ( isset($args['type']) && 'link' == $args['type'] ) { /* translators: 1: "type => link", 2: "taxonomy => link_category" alternative */ - _deprecated_argument( __FUNCTION__, '3.0', + _deprecated_argument( __FUNCTION__, '3.0.0', sprintf( __( '%1$s is deprecated. Use %2$s instead.' ), 'type => link', 'taxonomy => link_category' @@ -77,7 +77,7 @@ function get_categories( $args = '' ) { * If you look at get_term(), then both types will be passed through several * filters and finally sanitized based on the $filter parameter value. * - * The category will converted to maintain backwards compatibility. + * The category will converted to maintain backward compatibility. * * @since 1.5.1 * @@ -271,7 +271,7 @@ function get_tags( $args = '' ) { } /** - * Filter the array of term objects returned for the 'post_tag' taxonomy. + * Filters the array of term objects returned for the 'post_tag' taxonomy. * * @since 2.3.0 *