現(xiàn)在寫(xiě)個(gè)博客很不容易,還被抄襲或者轉(zhuǎn)載,于是很多博主在文章底部會(huì)加入版權(quán)聲明和鏈接。希望有些尊重版權(quán)的互聯(lián)網(wǎng)人能在轉(zhuǎn)載的時(shí)候給留個(gè)鏈接和出處。但是如果每篇文章都手動(dòng)加入的話會(huì)很麻煩,而wordpress博客可以很容易的實(shí)現(xiàn)自動(dòng)加入版權(quán)聲明和鏈接。
原來(lái)liboseo使用的是直接在文章模版里的文章下面添加代碼,我使用的是wordpress官方的twentyten主題修改的,所以編輯主題里的loop-single.php,找到下面這段代碼:
<div class=entry-content>
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class=page-link>' . __( 'pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
在
<?php the_content(); ?>
后面直接加入下面的代碼:
<pre>轉(zhuǎn)載請(qǐng)注明來(lái)自<a href='http://***.com'>逍遙博客@liboseo</a>,本文地址:<a href=<?php the_permalink(); ?>' title='<?php the_title(); ?>'><?php the_permalink(); ?></a>
除非注明,逍遙博客文章均為原創(chuàng),轉(zhuǎn)載請(qǐng)注明出處和鏈接!</pre>
但是出了個(gè)問(wèn)題,就是如果安裝了一些wumii或者百度分享之類的插件的話,上面添加的內(nèi)容只能顯示在無(wú)覓之類的下面,而不是緊緊貼著文章。顯然這個(gè)不是我們要的效果。
經(jīng)過(guò)各種測(cè)試,終于通過(guò)主題的自定義函數(shù)解決了。
方法很簡(jiǎn)單,因?yàn)橹晕覀兲砑拥膬?nèi)容不能緊貼著文章,就是因?yàn)檫@些插件將內(nèi)容插入到了the_content();函數(shù)里,而這個(gè)函數(shù)是 wordpress程序默認(rèn)的函數(shù)。我們?nèi)绻苯有薷膖he_content();函數(shù),那么如果升級(jí)wordpress程序的話,就會(huì)被覆蓋。
于是我通過(guò)在主題的functions.php文件,在最下面添加了一個(gè)自定義的函數(shù)liboseo_content();,內(nèi)容如下:
function liboseo_content($more_link_text = null, $stripteaser = 0) {
$content = get_the_content($more_link_text, $stripteaser);
$content.= <pre>轉(zhuǎn)載請(qǐng)注明來(lái)自<a href='http://***.com'>逍遙博客@liboseo</a>,;
$content.= 本文地址:<a href='.get_permalink($post, true).' title='.get_the_title($post_id).'>.get_permalink($post, true).</a>;
$content.= n除非注明,逍遙博客文章均為原創(chuàng),轉(zhuǎn)載請(qǐng)注明出處和鏈接!</pre>;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
然后把主題中的文章模版里的the_content();替換成自定義的函數(shù),比如我用的主題模版文件是loop-single.php,就直接將the_content();修改成liboseo_content();,變成了:
<div class=entry-content>
<?php liboseo_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class=page-link>' . __( 'pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
保存一下看看吧,是不是成功了?修改之前一定要備份原來(lái)的文件,如果可能的話,最好在本地測(cè)試好之后,再在網(wǎng)站上修改。