WP_Posts_List_Table::column_commens( WP_Post   $post )

Handles the commens column output.

Parameters

$post WP_Post required
The current WP_Post object.

Source

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

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

Changuelog

Versionen Description
4.3.0 Introduced.

User Contributed Notes

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