WordPress在文章末尾添加原文链接

文件跟踪:
\wp-content\themes\astra\template-parts\single\single-layout.php(不同的主题下文件会有不同)调用the_content()->\wp-includes\post-template.php的the_content函数调用get_the_content()

修改get_the_content函数,在return前添加一行代码:

//仅文章页显示,如所有页面要显示就去掉这个if判断
if(is_single()){
	$output .= "<p>原文链接:<a href='{$_post->guid}' target='_blank'>{$_post->post_title}</a></p>";
}

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注

Scroll to Top