diff --git wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-posts.php wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-posts.php
index 10ade2c..219458c 100644
|
|
class Plugin_Posts extends \WP_Posts_List_Table { |
109 | 109 | 'installs' => __( 'Active installs', 'wporg-plugins' ), |
110 | 110 | 'downloads' => __( 'Downloads', 'wporg-plugins' ), |
111 | 111 | 'support' => __( 'Support', 'wporg-plugins' ), |
| 112 | 'comments' => __( 'Notes', 'wporg-plugins' ), |
112 | 113 | 'date' => __( 'Date', 'wporg-plugins' ), |
113 | 114 | ); |
114 | 115 | |
… |
… |
class Plugin_Posts extends \WP_Posts_List_Table { |
226 | 227 | } |
227 | 228 | |
228 | 229 | /** |
| 230 | * Handles the notes column output. |
| 231 | * |
| 232 | * @param \WP_Post $post The current WP_Post object. |
| 233 | */ |
| 234 | public function column_notes( $post ) { |
| 235 | echo esc_html( $post->comment_count ); |
| 236 | } |
| 237 | |
| 238 | /** |
229 | 239 | * Generates and displays row action links. |
230 | 240 | * |
231 | 241 | * @access protected |