我是新手,我想知道上面的哪一行应该插入css样式..有人能告诉我吗?
<?php wp_get_archives( array( 'type' => 'postbypost', 'limit' => 10, 'format' => 'html' ) ); ?>
答案 0 :(得分:0)
如果您决定使用样式属性,我会使用before
和after
选项,如下所示:
wp_get_archives(
array(
'type' => 'postbypost',
'limit' => 10,
'format' => 'html',
'before' => '<span style="color: red;">',
'after' => '</span>',
)
);
用您想要的任何样式替换color: red;
。