Changeset 25079
- Timestamp:
- 08/22/2013 12:48:09 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r25077 r25079 663 663 * @param string $before Optional. Display before edit link. 664 664 * @param string $after Optional. Display after edit link. 665 * @param int|object $tag Tag object or ID665 * @param object $tag Tag object. 666 666 * @return string HTML content. 667 667 */ 668 668 function edit_tag_link( $link = '', $before = '', $after = '', $tag = null ) { 669 $link = edit_term_link( $link, '', '', false, $tag);669 $link = edit_term_link( $link, '', '', $tag, false ); 670 670 echo $before . apply_filters( 'edit_tag_link', $link ) . $after; 671 671 } … … 710 710 * @param string $before Optional. Display before edit link. 711 711 * @param string $after Optional. Display after edit link. 712 * @param object $term Term object 712 * @param object $term Term object. 713 713 * @return string HTML content. 714 714 */
Note: See TracChangeset
for help on using the changeset viewer.