Document default values for optional arguments in edit_term_link().

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@32926 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-06-24 10:55:13 +00:00
parent bdd00bc8c7
commit e95626a94f

View File

@ -944,10 +944,10 @@ function get_edit_term_link( $term_id, $taxonomy, $object_type = '' ) {
*
* @since 3.1.0
*
* @param string $link Optional. Anchor text.
* @param string $before Optional. Display before edit link.
* @param string $after Optional. Display after edit link.
* @param object $term Term object.
* @param string $link Optional. Anchor text. Default empty.
* @param string $before Optional. Display before edit link. Default empty.
* @param string $after Optional. Display after edit link. Default empty.
* @param object $term Optional. Term object. If null, the queried object will be inspected. Default null.
* @param bool $echo Optional. Whether or not to echo the return. Default true.
* @return string|void HTML content.
*/