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.
我知道它通常设置为 10 天,并希望它大约为 15 分钟。我在互联网上看到了很多关于某个 wp-pass 文件的答案,但似乎该文件在 wordpress 3.5 中不再存在
有谁知道如何改变这个?
谢谢,
如果您使用最新的 wordpress,您可以使用auth_cookie_expiration过滤器。这样的事情会做到:
auth_cookie_expiration
add_filter('auth_cookie_expiration', function($expiration){ return 900; /*15 minutes*/ });
您必须将其添加到插件中。