一般,我们修改Wordpress主题header的时候,都会去找主题文件夹下header.php这个文件;虽然Suffusion主题也是通过header.php导入blog header的,但是其header.php不过是调用几个函数,而真正的header的排布却在functions/actions.php中。
之后,便很容易发现function suffusion_display_header()函数定义了header的显示。于是我便在此函数显示header的最后一个
前插入如下简单代码,便成功地插入了一个漂亮的RSS Feed链接。
<style type=”text/css”>
.weichen_rss {
position:absolute;
right:180px;
top:55px;
}
.weichen_rss a:hover {
}
</style>
<div>
<a href=”http://feeds.feedburner.com/geekwei” target=”_blank” title=”Subscribe ME!”>
<img src=”http://geekwei.com/wp-content/uploads/2010/08/rss.png” width=”100″ alt=”RSS Feed” />
</a>
</div>
转载请注明:江海志の博客 » WP Suffusion主题在头部添加RSS订阅图标的方法