如何在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://www.chenweiliang.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> » 欢迎加入陈沩亮博客的 Telegram 频道:<a rel="external nofollow" title="点此加入陈沩亮博客的 Telegram 频道" href="" target="_blank">https://www.chenweiliang.com/go/tgchannel</a></div>'; } return $content; } add_filter ('the_content', 'feed_copyright'); ?>
- 请根据你的WordPress博客做修改。
希望陈沩亮博客( https://www.chenweiliang.com/ ) 分享的《WordPress文章末端如何添加本文URL?WP原文链接PHP代码》,对您有帮助。
欢迎分享本文链接:https://www.chenweiliang.com/cwl-1498.html
喜欢就分享和按赞!您的分享和按赞,是我们持续的动力!