WP_MS_Sites_List_Table::column_users() WordPress Method

The WP_MS_Sites_List_Table::column_users() method is used to display the number of users associated with a site in a multisite installation. This is useful for determining how active a site is, and whether it is worth keeping around.

WP_MS_Sites_List_Table::column_users( array $blog ) #

Handles the users column output.


Parameters

$blog

(array)(Required)Current site.


Top ↑

Source

File: wp-admin/includes/class-wp-ms-sites-list-table.php

	public function column_users( $blog ) {
		$user_count = wp_cache_get( $blog['blog_id'] . '_user_count', 'blog-details' );
		if ( ! $user_count ) {
			$blog_users = new WP_User_Query(
				array(
					'blog_id'     => $blog['blog_id'],
					'fields'      => 'ID',
					'number'      => 1,
					'count_total' => true,
				)
			);
			$user_count = $blog_users->get_total();
			wp_cache_set( $blog['blog_id'] . '_user_count', $user_count, 'blog-details', 12 * HOUR_IN_SECONDS );
		}

		printf(
			'<a href="%s">%s</a>',
			esc_url( network_admin_url( 'site-users.php?id=' . $blog['blog_id'] ) ),
			number_format_i18n( $user_count )
		);
	}


Top ↑

Changelog

Changelog
VersionDescription
4.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.