如何将CSS样式插入到wp_get_archives生成的输出中

时间:2014-09-21 04:33:55

标签: php css wordpress

我是新手,我想知道上面的哪一行应该插入css样式..有人能告诉我吗?

<?php wp_get_archives( array( 'type' => 'postbypost', 'limit' => 10, 'format' => 'html' ) ); ?>

1 个答案:

答案 0 :(得分:0)

如果您决定使用样式属性,我会使用beforeafter选项,如下所示:

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

用您想要的任何样式替换color: red;