diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 9ba51f4e1d..9f6d819126 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -726,7 +726,7 @@ function edit_term_link( $link = '', $before = '', $after = '', $term = null, $e if ( empty( $link ) ) $link = __('Edit This'); - $link = '' . $link . ''; + $link = '' . $link . ''; $link = $before . apply_filters( 'edit_term_link', $link, $term->term_id ) . $after; if ( $echo ) @@ -937,7 +937,7 @@ function edit_post_link( $link = null, $before = '', $after = '', $id = 0 ) { $link = __('Edit This'); $post_type_obj = get_post_type_object( $post->post_type ); - $link = '' . $link . ''; + $link = '' . $link . ''; echo $before . apply_filters( 'edit_post_link', $link, $post->ID ) . $after; } @@ -1011,7 +1011,7 @@ function edit_comment_link( $link = null, $before = '', $after = '' ) { if ( null === $link ) $link = __('Edit This'); - $link = '' . $link . ''; + $link = '' . $link . ''; echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID ) . $after; } @@ -1052,7 +1052,7 @@ function edit_bookmark_link( $link = '', $before = '', $after = '', $bookmark = if ( empty($link) ) $link = __('Edit This'); - $link = '' . $link . ''; + $link = '' . $link . ''; echo $before . apply_filters( 'edit_bookmark_link', $link, $bookmark->link_id ) . $after; } diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 3caeb29eb2..49fc2a5943 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -911,7 +911,7 @@ function wp_page_menu( $args = array() ) { $class = ''; if ( is_front_page() && !is_paged() ) $class = 'class="current_page_item"'; - $menu .= '
  • ' . $args['link_before'] . $text . $args['link_after'] . '
  • '; + $menu .= '
  • ' . $args['link_before'] . $text . $args['link_after'] . '
  • '; // If the front page is a page, add it to the exclude list if (get_option('show_on_front') == 'page') { if ( !empty( $list_args['exclude'] ) ) { @@ -1192,7 +1192,7 @@ function wp_get_attachment_link( $id = 0, $size = 'thumbnail', $permalink = fals if ( trim( $link_text ) == '' ) $link_text = $_post->post_title; - return apply_filters( 'wp_get_attachment_link', "$link_text", $id, $size, $permalink, $icon, $text ); + return apply_filters( 'wp_get_attachment_link', "$link_text", $id, $size, $permalink, $icon, $text ); } /**