2014-09-21 31 views

回答

0

如果你决定使用样式属性,我会使用beforeafter选项,像这样:

wp_get_archives(
    array(
     'type' => 'postbypost', 
     'limit' => 10, 
     'format' => 'html', 
     'before' => '<span style="color: red;">', 
     'after' => '</span>', 
    ) 
); 

当您更换color: red;与任何你想要的风格。

相关问题