Tag: 分享链接

如何在 WordPress 文后加入分享链接?

我经常把文章也复制一份到QQ空间方便国内的读者.然后每次就得复制文章的链接,很麻烦,后来直接就在每篇文章(甚至是页面)之后自动加入了文章的链接.方法很简单,也不需要插件. 编辑模板 functions.php 然后把下面的代码加到最后即可: add_filter( 'the_content', 'insert_post' ); function insert_post( $content ) { $post_id = get_the_ID(); $link = get_permalink($post_id); $title = get_the_title($post_id); return $content.'<BR/>听老赖讲故事:<a title="'.$title.'" href="'.$link.'"><B>'.$link.'</B></a> (本文地址)'; } 是不是很简单明了,代码懂一点英语的就都明白(都不需要注释).效果可以看下面.wordpress …