|
|
发表于 2025-8-13 23:47:20
|
显示全部楼层
shiguang.php文件少了一个闭合大括号 }
正确结构
function shiguang_plugin_add_links( $links, $file ) {
if ( strpos( $file, 'shiguang.php' ) !== false ) {
$new_links = array(
'<a target="_blank">' . __( '访问插件主页', 'shiguang-site-optimizer' ) . '</a>',
);
// 将新链接合并到现有链接数组中
$links = array_merge( $links, $new_links );
}
return $links; // 别忘了返回修改后的数组
} |
|