1

我正在写我的 Wordpress 博客。

    the_excerpt(); & 
<a href="<?php the_permalink(); ?>">Read more</a> 

如果我给 Wordpress 标准可以添加像“阅读更多”这样的摘录帖子。我的代码如下所示:

<a href="<?php the_permalink() ?>
   "rel="bookmark" title="Read more on 
   <?php the_title_attribute(); ?>"><?php the_title(); ?></a>

我的问题是如何在阅读更多内容中添加图标?有什么插件吗?或者我们可以手动添加它吗?请帮助我找到解决方案。

4

1 回答 1

5

您可以像这样向链接添加一个类;

 <a class="readmore" href="<?php the_permalink() ?>" rel="bookmark" title="Read more on <?php the_title_attribute(); ?>"></a>

然后您将使用 CSS 将您的图标应用到该类,如下所示;

a.readmore {
width: 20px;
height: 20px
display: block;
background: url(../images/myicon.png) no-repeat 0 0;
}

这些是示例,您可以根据相对于样式表的位置更改图像文件夹的 url 路径,然后上传您的图标。

希望这可以帮助。

于 2012-08-14T13:53:11.200 回答