WP_MS_Sites_List_Table::column_id() WordPress Method

The WP_MS_Sites_List_Table::column_id() method is used to display the id column in a list table for Multisite sites.

WP_MS_Sites_List_Table::column_id( array $blog ) #

Handles the ID column output.


Parameters

$blog

(array)(Required)Current site.


Top ↑

Source

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

	public function column_id( $blog ) {
		echo $blog['blog_id'];
	}

Top ↑

Changelog

Changelog
VersionDescription
4.4.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.