0

我有这样的代码

    $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 不同。我怎么会在这里。谢谢

4

1 回答 1

3

<span>用特定的类将它们包装在s 中,例如

<span class='comment-author'>%1$s</span> on <span class='post-link'>%2$s</span>

然后调整你的 CSS 来为这些类显示不同的颜色。

于 2012-04-04T06:34:15.410 回答