如何在PHP链接中添加样式(即文本修饰:下划线)?

时间:2013-02-15 08:37:55

标签: php wordpress

我在WP博客上有一个链接给作者。但是在查看页面时,链接只是与文本的其余部分混合在一起。我希望观众知道作者的名字是可点击的链接,如果他们想查看作者的个人资料,他们可以点击该链接。

所以代码片段是:

<div class="postdate">
<?php the_time('l, F jS, Y') ?> by 
    <?php the_author_posts_link(); ?>                        
at
<?php the_time() ?>
</div>

当然,我必须使用 the_author_posts_link 行做一些事情。但是我不确定我会在那里添加一些东西,例如style =“text-decoration:underline”或者其他东西,所以它在php中是可以接受的。任何有关这方面的信息或指导都将不胜感激!

澄清

以前,输出是这样的:

Thursday, February 14th, 2013 by Jason+ at 10:05 am

在制定Alien先生提供的css片段之后,输出结果是相同的:

Thursday, February 14th, 2013 by Jason+ at 10:05 am

但是当我在它上面徘徊时它会强调,这很奇怪。我希望在将鼠标悬停在它上面之前加下划线,就我看到的代码而言应该是这样。

1 个答案:

答案 0 :(得分:3)

我不理解你的问题,但是如果这个函数the_author_posts_link();正在返回链接,那么你可以像这样做

.postdate a {
   text-decoration: underline; /* You can use !important declaration if you are
                                  not getting the underline, perhaps something 
                                  must be overriding so... */
}