我的插件使用下面的代码,其中包含uid=“x”,要求用户编辑插件并将“x”设置为其用户id,例如uid=“420971”。每当我发布插件更新并且用户下载它时,更新就会覆盖此设置,因为更新中包含通用的u=“x”。如何保存用户的个人uid并将其应用于更新的插件?
add_filter(\'the_content\', \'the_plugin\');
function the_plugin($content) {
global $add_the_script;
$content_add_on = \'<div class="ACME_STATS" uid="x"></div>\';
$theContent = $content.$content_add_on;
$add_the_script = true;
return ($theContent);
}