Handles the commens column output.
Parameters
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.