Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让电子邮件存储在 wordpress 中的“设置”。我知道有一个旧功能:get_settings但这是depreciated。我找不到替代品 - 这是有原因的吗?在 wordpress 中返回设置电子邮件的最佳实践方法是什么?
get_settings
而不是使用get_settings(),使用get_option()。
get_settings()
get_option()
例子:
$email = get_option('admin_email');