bp_document_get_total_document_count( int $user_id )
Get the document count of a given user.
Description
Parameters
- $user_id
-
(Required) ID of the user whose document are being counted.
Return
(int) document count of the user.
Source
File: bp-document/bp-document-functions.php
function bp_document_get_total_document_count( $user_id = 0 ) { if ( empty( $user_id ) ) { $user_id = ( bp_displayed_user_id() ) ? bp_displayed_user_id() : bp_loggedin_user_id(); } $count = wp_cache_get( 'bp_total_document_for_user_' . $user_id, 'bp' ); if ( false === $count ) { $count = BP_Document::total_document_count( $user_id ); wp_cache_set( 'bp_total_document_for_user_' . $user_id, $count, 'bp' ); } /** * Filters the total document count for a given user. * * @param int $count Total document count for a given user. * * @since BuddyBoss 1.4.0 */ return apply_filters( 'bp_document_get_total_document_count', (int) $count ); }
Changelog
Version | Description |
---|---|
BuddyBoss 1.4.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.