我使用一些插件将图像上传到特定的上传子文件夹中。我想将此子文件夹媒体排除在媒体库和媒体选择器中显示。
对于Media Picker,我尝试使用此过滤器,但是即使Ajax响应成功,选择器也不会显示任何图像。 JS控制台中没有错误。
add_filter('wp_prepare_attachment_for_js', function($response, $attachment, $meta) {
$folder_to_exclude = 'bad-folder'
if (substr($meta['file'], 0, strlen($folder_to_exclude)) === $folder_to_exclude) {
return;
return $response;
}, 100, 3);
有什么想法吗,我该如何实施媒体库解决方案?