Address
Email
Contact
在WordPress文章详情页添加本页的URL链接,可以在管理后台 “外观”→“主题文件编辑器”→“functions.php”文件末尾添加如下代码保存更新即可:
// 文章末尾添加自定义链接 function add_post_link_to_content($content) { global $post; return $content . ' 查看此文章:' . get_permalink($post->ID) . ''; } add_filter('the_content', 'add_post_link_to_content');
具体效果如下图红框所示:
Comments are closed