現在私はthe_author_posts_link()
にカスタムCSSを追加する必要があるプロジェクトとしてスタイリングしています。
the_author_posts_link()
というクラスに "blog-link"というクラスを追加したいのですが。 CSSクラスを追加するにはどうすればいいですか?
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 );
});