Changeset 25570 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 09/23/2013 02:50:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r25404 r25570 727 727 $link = __('Edit This'); 728 728 729 $link = '<a href="' . get_edit_term_link( $term->term_id, $term->taxonomy ) . '" title="' . $link . '">' . $link . '</a>';729 $link = '<a href="' . get_edit_term_link( $term->term_id, $term->taxonomy ) . '">' . $link . '</a>'; 730 730 $link = $before . apply_filters( 'edit_term_link', $link, $term->term_id ) . $after; 731 731 … … 938 938 939 939 $post_type_obj = get_post_type_object( $post->post_type ); 940 $link = '<a class="post-edit-link" href="' . $url . '" title="' . esc_attr( $post_type_obj->labels->edit_item ) . '">' . $link . '</a>';940 $link = '<a class="post-edit-link" href="' . $url . '">' . $link . '</a>'; 941 941 echo $before . apply_filters( 'edit_post_link', $link, $post->ID ) . $after; 942 942 } … … 1012 1012 $link = __('Edit This'); 1013 1013 1014 $link = '<a class="comment-edit-link" href="' . get_edit_comment_link( $comment->comment_ID ) . '" title="' . esc_attr__( 'Edit comment' ) . '">' . $link . '</a>';1014 $link = '<a class="comment-edit-link" href="' . get_edit_comment_link( $comment->comment_ID ) . '">' . $link . '</a>'; 1015 1015 echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID ) . $after; 1016 1016 } … … 1053 1053 $link = __('Edit This'); 1054 1054 1055 $link = '<a href="' . get_edit_bookmark_link( $bookmark ) . '" title="' . esc_attr__( 'Edit Link' ) . '">' . $link . '</a>';1055 $link = '<a href="' . get_edit_bookmark_link( $bookmark ) . '">' . $link . '</a>'; 1056 1056 echo $before . apply_filters( 'edit_bookmark_link', $link, $bookmark->link_id ) . $after; 1057 1057 }
Note: See TracChangeset
for help on using the changeset viewer.