the_author_posts_link css class

You can use the the_author_posts_link filter to add the custom blog-link class:

/**
 * Add the 'blog-link' 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="blog-link"', $link );
});

Leave a Comment