bp_get_total_site_member_count() not working?
-
Does anyone know if there is anything special I need to do to get this function to work? It returns 0 to me even though I have members.
I am using the code in this context…
//return total buddypress members function show_number_of_members( $atts ){ $count_members = bp_get_total_site_member_count(); return $count_members; } //registers all shortcodes function register_shortcodes() { add_shortcode(‘member_count’, ‘show_number_of_members’); add_shortcode( 'postcount', 'post_count_function' ); } add_action(init, register_shortcodes);
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.