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); }