我正在从WordPress的媒体部分上传图片。图片将于2016/12而不是2017/08上传。我在“设置”中检查了媒体设置>选择媒体并将我上传到基于月份和年份的文件夹选项。
当我创建一个新页面并从那里上传图像时,它会进入2017/08文件夹。
任何人都可以建议我如何解决它。我搜索了这个,并没有找到解决图片问题从媒体部分上传的问题。
提前致谢。
答案 0 :(得分:0)
wp_upload_dir 功能必定出错。在 wp-includes 目录中,查找名为 functions.php 的文件。确保 wp_upload_dir 的设置如下:
function wp_upload_dir( $time = null, $create_dir = true, $refresh_cache = false ) {
static $cache = array(), $tested_paths = array();
$key = sprintf( '%d-%s', get_current_blog_id(), (string) $time );
if ( $refresh_cache || empty( $cache[ $key ] ) ) {
$cache[ $key ] = _wp_upload_dir( $time );
}
如果这有帮助,请告诉我。祝你好运!