• Probably seems weird, but I’m wondering if there’s a way to display a user’s “Read” topics in his/her BuddyPress profile?

    I see there’s a way to get the read IDs.

    public function get_read_ids( $user_id = 0 ) {
    $read_ids = (string) get_user_meta( $user_id, '_bbp_mar_read_ids', true );
    $read_ids = (array) explode( ',', $read_ids );
    $read_ids = array_filter( $read_ids );
    return apply_filters( 'bbp_mar_read_ids', (array)$read_ids );
    }

    But I’d like to display a list — and preferably output the total number of read topics.

  • The topic ‘Show All Read Topics in BuddyPress’ is closed to new replies.