致力于为用户提供真实的
主机测评数据及优惠信息

在wordpress文章末尾添加内容的简单方法

1、修改文章页面模板single.php
打开模版文件中的single.php,在其中搜索
在这行下面加上:

  1. <p>原创文章如转载,请注明本文链接: <a href=”<?php the_permalink() ?>” title=”<?php the_title(); ?>”> 
  2. <?php the_permalink(); ?></a> 
  3. </p> 

就OK了,还有一种方法:

 

2、打开主题文件夹内的:functions.php文件,在末尾加入代码(复制粘贴时请注意中英文标点):

  1. <?php 
  2. function feed_copyright($content) { 
  3. if(is_single() or is_feed() or is_page()) { 
  4. $content.= ‘<div>本文来自:<a title=”博客” href=”https://www.zzvips.com” target=”_blank”>小谈博客</a> &raquo; <a rel=”bookmark” title=”‘.get_the_title().’” href=”‘.get_permalink().’” target=”_blank”>《’.get_the_title().’》</a></div>’; 
  5. $content.= ‘<div>本文链接地址:<a rel=”bookmark” title=”‘.get_the_title().’” href=”‘.get_permalink().’” target=”_blank”>’.get_permalink().’</a> &raquo;英雄不问来路,转载请注明出处,谢谢。</div>’; 
  6. $content.= ‘<div>有话想说:<a title=”给我留言” href=”‘.get_permalink().’#respond” target=”_blank”>那就赶紧去给我留言吧.</a></div>’; 
  7. $content.= ‘<div>您也可以订阅本站:<a rel=”external nofollow” title=”小谈博客” href=”http://www.zzvips.com/” target=”_blank”>https://www.zzvips.com</a></div>’; 
  8. return $content; 
  9. add_filter (‘the_content’, ‘feed_copyright’); 
  10. ?> 

推荐此法,不止可以在博客日志页加入链接,包括feed里也可以,实现以后的效果如本文下面显示,蓝色文字部分请根据自己的博客修改。

 

赞(0) 打赏
未经允许不得转载:爱主机 » 在wordpress文章末尾添加内容的简单方法
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址