WP_Posts_List_Table::column_comments( WP_Post $post )

Handles the comments column output.


Description Description


Parameters Parameters

$post

(WP_Post) (Required) The current WP_Post object.


Top ↑

Source 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

Changelog
Version Description
4.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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