Make WordPress Core

Ticket #60013: 60013-2.patch

File 60013-2.patch, 640 bytes (added by adnan.limdi, 16 months ago)

Remove Unwanted title for author template file.

  • src/wp-includes/author-template.php

    diff --git a/src/wp-includes/author-template.php b/src/wp-includes/author-template.php
    index 184d7d0f38..99d7727fcf 100644
    a b function get_the_author_link() { 
    238238                $author_display_name = get_the_author();
    239239
    240240                $link = sprintf(
    241                         '<a href="%1$s" title="%2$s" rel="author external">%3$s</a>',
     241                        '<a href="%1$s" rel="author external">%3$s</a>',
    242242                        esc_url( $author_url ),
    243243                        /* translators: %s: Author's display name. */
    244                         esc_attr( sprintf( __( 'Visit %s&#8217;s website' ), $author_display_name ) ),
    245244                        $author_display_name
    246245                );
    247246