From 1d4b8ffd1dea69bd128776798c7a89f431786a70 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 16 Sep 2015 15:00:04 +0000 Subject: [PATCH] Docs: Expand the DocBlock for the `WP_Theme::get_edit_link()` method, introduced in [34084]. Fixes #32376. git-svn-id: https://develop.svn.wordpress.org/trunk@34238 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-posts-list-table.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 e00536d540..a40815861e 100644 --- a/src/wp-admin/includes/class-wp-posts-list-table.php +++ b/src/wp-admin/includes/class-wp-posts-list-table.php @@ -196,10 +196,14 @@ class WP_Posts_List_Table extends WP_List_Table { } /** - * Helper to create links to `edit.php` with params + * Helper to create links to edit.php with params. * * @since 4.4.0 + * @access protected * + * @param array $args URL parameters for the link. + * @param string $label Link text. + * @param string $class Optional. Class attribute. Default empty string. * @return string The formatted link string. */ protected function get_edit_link( $args, $label, $class = '' ) {