在哪里存储函数中使用的凭据?

时间:2016-08-18 作者:Julio

我正在中编写函数functions.php 在我的主题下。该函数包含一个cURL命令,该命令使用“account\\u id”和“password”等凭据。这些凭据不是来自用户输入。

我在哪里可以存储这些凭据?我将如何检索它们以在函数中使用它们?

1 个回复
SO网友:Krzysztof Grabania

您可以将其存储为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 他们不会知道你的资历。同样重要的是,密码不应存储为纯文本。

相关推荐

Functions.php中的上次更新帖子快捷代码

我正在搜索在函数中创建一个短代码。php子主题,用缩略图显示上次更新的帖子。我有以下代码可用于页面模板: <ol class="list-numbered"> <?php // Show recently modified posts $recently_updated_posts = new WP_Query( array( \'post_type\' => \'post\