WP_Posts_List_Table::column_comments() WordPress Method

The WP_Posts_List_Table::column_comments() method is used to display the number of comments for a post in the WordPress posts list table. This method is called by the WP_Posts_List_Table::display_rows() method when displaying the list of posts.

WP_Posts_List_Table::column_comments( WP_Post $post ) #

Handles the comments column output.


Parameters

$post

(WP_Post)(Required)The current WP_Post object.


Top ↑

Source

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

	public function column_comments( $post ) {
		?>
		<div class="post-com-count-wrapper">
		<?php
			$pending_comments = isset( $this->comment_pending_count[ $post->ID ] ) ? $this->comment_pending_count[ $post->ID ] : 0;

			$this->comments_bubble( $post->ID, $pending_comments );
		?>
		</div>
		<?php
	}

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.