我有这样的代码
$output.='<li class="'.$rcclass.'">' .
/* translators: comments widget: 1: comment author, 2: post link */
sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') .
'</li>';
我希望%1 $ s的颜色与%2 $ s不同。 我怎么在这里做 谢谢
答案 0 :(得分:2)
将它们包含在具有特定类别的<span>
中,例如
<span class='comment-author'>%1$s</span> on <span class='post-link'>%2$s</span>
然后调整CSS以显示这些类的不同颜色。