diff --git src/wp-admin/includes/class-wp-posts-list-table.php src/wp-admin/includes/class-wp-posts-list-table.php
index 40f5315395..719c036722 100644
|
|
|
class WP_Posts_List_Table extends WP_List_Table { |
| 239 | 239 | ); |
| 240 | 240 | } |
| 241 | 241 | |
| | 242 | /** |
| | 243 | * Filters the URL to edit.php in the posts list table. |
| | 244 | * |
| | 245 | * @param string $url The generated URL to edit.php. |
| | 246 | * @param array $args URL parameters for the link. |
| | 247 | */ |
| | 248 | $url = apply_filters( 'wp_posts_list_table_edit_url', $url, $args ); |
| | 249 | |
| 242 | 250 | return sprintf( |
| 243 | 251 | '<a href="%s"%s>%s</a>', |
| 244 | 252 | esc_url( $url ), |