您可以将其存储为variables
$account_id = \'your_account_id\';
$password = \'your password\';
someFunction($account_id, $password);
或将其存储在
{$table_prefix}_options
表并检索
get_option
作用
$account_id = get_option(\'account_id\');
$password = get_option(\'password\');
someFunction($account_id, $password);
您可以通过以下方式保存此值,例如从管理面板
update_option
作用
第二种选择更好,因为你可以分享你的functions.php
他们不会知道你的资历。同样重要的是,密码不应存储为纯文本。