Create a folder if it doesn't already exist

2019-01-04 15:44发布

I've run into a few cases with WordPress installs with Bluehost where I've encountered errors with my WordPress theme because the uploads folder wp-content/uploads was not present.

Apparently the Bluehost cPanel WP installer does not create this folder, though HostGator does.

So I need to add code to my theme that checks for the folder and creates it otherwise.

13条回答
ゆ 、 Hurt°
2楼-- · 2019-01-04 16:12

You can try also:

$dirpath = "path/to/dir";
$mode = "0777";
is_dir($dirpath) || mkdir($dirpath, $mode, true);
查看更多
登录 后发表回答