许多主题都使用the_content()
显示帖子内容。您可以使用the_content
过滤挂钩,在内容之前/之后添加编辑链接。
由于您希望在主题之外进行此工作,因此必须将以下代码放在一个文件中,并将其存储在插件文件夹中,然后将其作为插件激活。
<?php
/**
* Plugin Name: Add Edit Link in Frontend
* Description: Append post edit link to content
* Version: 1.0.0
*/
function wpael_content_edit_link( $content ) {
$content .= \'<br /><div style="font-size: 14px"><a href="\'. get_edit_post_link( get_the_ID() ) . \'">Edit</a></div>\';
return $content;
}
add_filter( \'the_content\', \'wpael_content_edit_link\', 10 );