2020年7月20日星期一

WordPress文末如何添加本文URL?WP文章链接PHP代码实例

原文链接:https://www.chenweiliang.com/cwl-1498.html


如何在WordPress中每篇文章的末尾添加原文链接


如何在WordPress中每篇文章的末尾添加原文链接?


使用WordPress建站的朋友,若想要添加“原创文章若转载,请注明本文链接:”,实际上非常简单。


这里就分享2种在WordPress文末添加本文链接URL的方法。


👩‍💻一、修改文章页面模板single.php


在WordPress主题模板文件中,打开single.php,搜索以下PHP代码:


<?php the_content(); ?>

这行PHP代码的下面,添加以下PHP代码 ▼


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

  • 然后,保存更新,这样就可以了。

👩‍💻二、添加PHP代码到function.php文件


建议这种方法,不仅可以添加到博客日志页面的链接,包括feed也是可以。


打开主题文件夹中的function.php文件,并在最后添加以下PHP代码(复制和粘贴时请注意中文和英文标点符号):


<?php
function feed_copyright($content)
if(is_single() or is_feed() or is_page())
$content.= '<div>    » 本文来自:<a title="乌帮图的博客" href="https://wbt5.com" target="_blank">乌帮图的博客</a> » <a rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'" target="_blank">《'.get_the_title().'》</a></div>';
$content.= '<div>    » 本文链接地址:<a rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'" target="_blank">'.get_permalink().'</a> »英雄不问来路,转载请注明出处,谢谢。</div>';
$content.= '<div>    » 有话想说:<a title="给我留言" href="'.get_permalink().'#respond" target="_blank">那就赶紧去给我留言吧.</a></div>';
$content.= '<div>    » 您也可以订阅本站:<a rel="external nofollow" title="订阅乌帮图的博客" href="http://feed.wbt5.com/" target="_blank">http://feed.wbt5.com</a></div>';

return $content;

add_filter ('the_content', 'feed_copyright');
?>

  • 请根据你的WordPress博客做修改。



欢迎转载《WordPress文末如何添加本文URL?WP文章链接PHP代码实例
陈沩亮版权所有,转载请注明出处链接:https://www.chenweiliang.com/cwl-1498.html


网站地址:https://www.chenweiliang.com/



欲获取更多资讯内幕和秘技,欢迎进入Telegram频道:cwlboke

没有评论:

发表评论