I changed the following, the original line I adjusted was: ‘%3$s‘,
—————-
function the_author_posts_link($deprecated = ”) {
if ( !empty( $deprecated ) )
_deprecated_argument( __FUNCTION__, ‘2.1’ );
global $authordata;
if ( !is_object( $authordata ) )
return false;
$link = sprintf(
‘%3$s‘,
get_author_posts_url( $authordata->ID, $authordata->user_nicename ),
esc_attr( sprintf( __( ‘Posts by %s’ ), get_the_author() ) ),
get_the_author()
);
echo apply_filters( ‘the_author_posts_link’, $link );
}
————-
I guess the question is still if the template should be adjusted for everyone?