Archive for the ‘WordPress’ Category

在使用WordPress过程中,有时为了方便阅读着分享到主流的社交网站或微薄,需要在文章旁边添加一些分享按钮。如下图,本文就介绍简单对WordPress做些简单修改来完成对分享的支持. 相关代码和图片打包下载: shareto 修改步骤如下: 零 : 把下载好的images下面的图标文件上传到你的空间中。 一 :把写好的 shareto.php 上传到你的主题目录,然后把其中的图片的地址改为你自己上传的 如: /wp-content/themes/你的主题名字/ 下面: <?php //shareto.php $permalink = urlencode(get_permalink($post->ID)); $title = urlencode($post->post_title); $title = str_replace(‘+’,'%20′,$title); $sitename=”cngump”; $domainurl=”http://www.cngump.com/”; //把下面的图片url替换成自己的空间的url ?> <h3>我要分享到:</h3> <ul> <li><a title=”新浪微博” rel=”nofollow” href=”http://v.t.sina.com.cn/share/share.php?url=<?php echo $permalink; ?>&title=<?php echo $title; ?>&content=utf-8″ target=”_blank”><img title=”新浪微博” src=”http://www.cngump.com/images/bookmark/sina.png” alt=”新浪微博” /></a></li> <li><a title=”腾讯微博” rel=”nofollow” target=”_blank” href=”javascript:window.open(‘http://v.t.qq.com/share/share.php?title=’+'<?php echo $title; ?>’+encodeURIComponent(document.title)+’&url=’+encodeURIComponent(‘<?php echo [...]


top