Answers:
选项名称为upload_url_path
,您仍然可以过滤它:
add_filter( 'pre_option_upload_url_path', 'wpse_77960_upload_url' );
function wpse_77960_upload_url()
{
return 'http://subdomain.example.com/files';
}
'http://subdomain.example.com/files//path/to/image.jpg'
UPLOADS
是文件路径,upload_url
是URL。两个不同的URL可以指向同一本地路径,并且无法确定给定路径的正确URL。所以两者是两回事。