bp_get_total_blog_count()

Return the total number of blogs on the site.


Description Description


Return Return

(int) Total number of blogs.


Top ↑

Source Source

File: bp-blogs/bp-blogs-template.php

	function bp_get_total_blog_count() {

		/**
		 * Filters the total number of blogs on the site.
		 *
		 * @since 1.2.0
		 *
		 * @param int $value Total number of blogs on the site.
		 */
		return apply_filters( 'bp_get_total_blog_count', bp_blogs_total_blogs() );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.