Make WordPress Core


Ignore:
Timestamp:
03/03/2014 05:28:07 PM (12 years ago)
Author:
nacin
Message:

Accept nooped plurals in wp_generate_tag_cloud() / wp_tag_cloud().

Renders topic_count_text_callback more or less obsolete. It can still be used, but passing a plural is easier.

fixes #27262. see #7989, #14424.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r27262 r27376  
    34193419 */
    34203420function wp_style_loader_src() {}
     3421
     3422
     3423/**
     3424 * Old callback for tag link tooltips.
     3425 *
     3426 * @since 2.7.0
     3427 * @deprecated 3.9.0
     3428 * @access private
     3429 */
     3430function default_topic_count_text( $count ) {
     3431        return $count;
     3432}
Note: See TracChangeset for help on using the changeset viewer.