WP_Posts_List_Table::column_comments( WP_Post $post )

Handles the comments column output.


Parameters

$post

(WP_Post) (Required) The current WP_Post object.


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
	}

Changelog

Changelog
Version Description
WP-4.3.0 Introduced.