diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php
index 1e27b931ab..b7da3af518 100644
|
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
| 723 | 723 | * |
| 724 | 724 | * @since 2.5.0 |
| 725 | 725 | * |
| 726 | | * @param string[] $post_columns An associative array of column headings. |
| | 726 | * @param string[] $posts_columns An associative array of column headings. |
| 727 | 727 | */ |
| 728 | 728 | $posts_columns = apply_filters( 'manage_pages_columns', $posts_columns ); |
| 729 | 729 | } else { |
| … |
… |
class WP_Posts_List_Table extends WP_List_Table { |
| 733 | 733 | * |
| 734 | 734 | * @since 1.5.0 |
| 735 | 735 | * |
| 736 | | * @param string[] $post_columns An associative array of column headings. |
| | 736 | * @param string[] $posts_columns An associative array of column headings. |
| 737 | 737 | * @param string $post_type The post type slug. |
| 738 | 738 | */ |
| 739 | 739 | $posts_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type ); |
| … |
… |
class WP_Posts_List_Table extends WP_List_Table { |
| 751 | 751 | * |
| 752 | 752 | * @since 3.0.0 |
| 753 | 753 | * |
| 754 | | * @param string[] $post_columns An associative array of column headings. |
| | 754 | * @param string[] $posts_columns An associative array of column headings. |
| 755 | 755 | */ |
| 756 | 756 | return apply_filters( "manage_{$post_type}_posts_columns", $posts_columns ); |
| 757 | 757 | } |