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 网站的自定义配置变量?
例如
$config['forbidden_users'] = array("admin", "host");
您可以将其保存在functions.php 中。或者您可以在 wp-configs.php 中添加它。但正确的解决方法是将它添加到funcitons.php 中。你有两种方法。首先,您可以创建全局变量。其次,您可以创建将返回 array("admin","host"); 的函数
你可以在functions.php中创建一个全局