Skip to content

Instantly share code, notes, and snippets.

@mustafix
Created July 5, 2020 16:17
Show Gist options
  • Save mustafix/1410b021cb65dd93a38a466aa028bc90 to your computer and use it in GitHub Desktop.
Save mustafix/1410b021cb65dd93a38a466aa028bc90 to your computer and use it in GitHub Desktop.
/*-------------------------------------------------------
Add the 'auth' class to the output of the_author_posts_link()
--------------------------------------------------------*/
add_filter( 'the_author_posts_link', function( $link )
{
return str_replace( 'rel="author"', 'rel="author" class="auth"', $link );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment