WordPress分享&收藏无插件修订版
其实在博客创建初期的时候我就屁颠屁颠的试用了不少分享&收藏 文章的插件,但是后来觉得插件较多,而这个好像用处不大就给去掉了。近日在许多博客发现大家都有这么个功能,既然想用无插件的,那就找吧,老万这个正合适,我就拿来了,不过修改了一点点,呵呵~~(老万原文地址:Wordpress 非插件实现分享按钮 )
效果在每篇文章的开始和结尾处都有,截图如下
<img class="aligncenter size-full wp-image-1333" title="wordpress_share" src="http://www.zenoven.com/wp-content/2010/06/wordpress_share.gif" alt="" width="613" height="37" />
PHP代码(将之插入模板文件中的single.php文件中合适的地方)
[code lang="php"]
<div class="share">
<strong>分享&收藏本文</strong>:
<a href="http://twitter.com/home/?status=<?php the_title("); ?>:<?php the_permalink(); ?>" target="_blank">Twitter</a>
<a href="http://del.icio.us/post?url=<?php the_permalink(); ?>&title=<?php the_title("); ?>" target="_blank">Delicious</a>
<a href="http://digg.com/submit?phase=2&url=<?php the_permalink(); ?>" target="_blank">Digg</a>
<a href="http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title("); ?>" target="_blank">Facebook</a>
<a href="http://www.google.com/reader/link?url=<?php the_permalink(); ?>&title=<?php the_title("); ?>" target="_blank">GoogleReader</a>
<a href="http://shuqian.qq.com/post?from=3&title=<?php the_title("); ?>&uri=<?php the_permalink(); ?>" target="_blank">QQ书签</a>
<a href="http://www.xianguo.com/service/submitfav/?link=<?php the_permalink(); ?>&title=<?php the_title("); ?>" target="_blank">鲜果</a>
<a href="http://www.kaixin001.com/repaste/share.php?rtitle=<?php the_title("); ?>&rurl=<?php the_permalink(); ?>&rcontent=" target="_blank">开心网</a>
<a href="http://www.douban.com/recommend/?url=<?php the_permalink(); ?>&title=<?php the_title("); ?>" target="_blank">豆瓣</a>
</div>
[/code]
CSS代码
[code lang="css"]
.share{color:#F60;margin:10px 0;border:1px dashed #D5D5D8;background:#F0F0F0;padding:5px 0 5px 5px}
.share a{margin-left:6px;}
[/code]
既然有修改那么我修改了哪里呢?
- 给每个a标签加了target="_blank"
- 给QQ书签里加入了文章地址(原文中无&uri=<?php the_permalink(); ?>)
- 加了一点点CSS(其实可以把a标签都改成图片样式的,但是我也比较懒就没做,哈哈)