0

我在 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.ini 中是可以接受的。任何有关这方面的信息或指导将不胜感激!

澄清

以前,输出是这样的:

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

建立 Alien 先生提供的 CSS 片段后,输出是相同的:

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

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

4

1 回答 1

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... */
}
于 2013-02-15T08:40:01.667 回答