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.
Contents
Parameters
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 }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |