不,不严格。你可以check the source 并确保没有挂钩可以让您更改URL。
您还应该注意到这段有趣的代码:
512 if ( $image = image_downsize($attachment_id, $size) )
513 return $image;
跟踪跟踪到
here 你会发现:
141 // plugins can use this to provide resize services
142 if ( $out = apply_filters( \'image_downsize\', false, $id, $size ) )
143 return $out;
如果你陷入
image_downsize
...
add_filter(
\'image_downsize\',
function ($f,$id,$size) {
// your own downsize function
},
10,3
);
wp_get_attachment_image_src(4);
。。。您应该能够返回所需的任何URL,但这意味着您将需要或多或少地复制
image_downsize()
当然会有变化。