web-dev-qa-db-ja.com

the_author_posts_link cssクラス

現在私はthe_author_posts_link()にカスタムCSSを追加する必要があるプロジェクトとしてスタイリングしています。

the_author_posts_link()というクラスに "blog-link"というクラスを追加したいのですが。 CSSクラスを追加するにはどうすればいいですか?

3
rwzdoorn

the_author_posts_linkフィルタを使用して、カスタムのblog-linkクラスを追加できます。

/**
 * 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 );
});
4
birgire