default_topic_count_text

The timeline below displays how wordpress function default_topic_count_text has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.5

/**
 * Old callback for tag link tooltips.
 *
 * @since 2.7.0
 * @access private
 * @deprecated 3.9.0
 *
 * @param int $count Number of topics.
 * @return int Number of topics.
 */
function default_topic_count_text($count)
{
    return $count;
}

WordPress Version: 4.4

/**
 * Old callback for tag link tooltips.
 *
 * @since 2.7.0
 * @access private
 * @deprecated 3.9.0
 */
function default_topic_count_text($count)
{
    return $count;
}

WordPress Version: 3.9

/**
 * Old callback for tag link tooltips.
 *
 * @since 2.7.0
 * @deprecated 3.9.0
 * @access private
 */
function default_topic_count_text($count)
{
    return $count;
}

WordPress Version: 3.7

/**
 * Default text for tooltip for tag links
 *
 * @param integer $count number of posts with that tag
 * @return string text for the tooltip of a tag link.
 */
function default_topic_count_text($count)
{
    return sprintf(_n('%s topic', '%s topics', $count), number_format_i18n($count));
}