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 多站点插件。我想在将新博客添加到 wordpress 多站点网络时添加一个文件夹(文件夹名=域名)。如果域名更改,也必须重命名文件夹...
有什么钩子吗?
我的插件是一个 wp-mvc 多站点插件。
你需要做这样的事情:
if (!file_exists('path/to/directory')) { mkdir('path/to/directory', 0777, true); }