bp_core_number_format( int $number, bool $decimals = false )

Format numbers the BuddyPress way.

Description

Parameters

$number

(Required) The number to be formatted.

$decimals

(Optional) Whether to use decimals. See number_format_i18n().

Default value: false

Return

(string) The formatted number.

Source

File: bp-core/bp-core-functions.php

187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
function bp_core_number_format( $number = 0, $decimals = false ) {
 
    // Force number to 0 if needed.
    if ( ! is_numeric( $number ) ) {
        $number = 0;
    }
 
    /**
     * Filters the BuddyPress formatted number.
     *
     * @since BuddyPress 1.2.4
     *
     * @param string $value    BuddyPress formatted value.
     * @param int    $number   The number to be formatted.
     * @param bool   $decimals Whether or not to use decimals.
     */
    return apply_filters( 'bp_core_number_format', number_format_i18n( $number, $decimals ), $number, $decimals );
}

Changelog

Changelog
Version Description
BuddyPress 1.2.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.