bbp_get_user_topic_count( int $user_id, boolean $integer = false )

Return a users reply count

Description

Parameters

$user_id

(int) (Required)

$integer

(boolean) (Optional) Whether or not to format the result

Default value: false

Return

(string)

Source

File: bp-forums/users/options.php

	function bbp_get_user_topic_count( $user_id = 0, $integer = false ) {

		// Validate user id
		$user_id = bbp_get_user_id( $user_id );
		if ( empty( $user_id ) )
			return false;

		$count  = (int) get_user_option( '_bbp_topic_count', $user_id );
		$filter = ( false === $integer ) ? 'bbp_get_user_topic_count_int' : 'bbp_get_user_topic_count';

		return apply_filters( $filter, $count, $user_id );
	}

Changelog

Changelog
Version Description
bbPress (r3632) 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.