No estoy 100% seguro si soluciono su problema, pero ... Tal vez esto lo ayude ...
El cargador de medios obtiene archivos adjuntos de manera simple WP_Query
, por lo que puede usar muchos filtros para modificar su contenido.
El único problema es que no se puede consulta postes con CPT específico como padres usando WP_Query
argumentos ... Por lo tanto, tendremos que utilizar posts_where
y posts_join
filtros.
Para estar seguros, que solo cambiaremos la consulta del cargador de medios, usaremos ajax_query_attachments_args
.
Y así es como se ve, cuando se combina:
function my_posts_where($where) {
global $wpdb;
$post_id = false;
if ( isset($_POST['post_id']) ) {
$post_id = $_POST['post_id'];
$post = get_post($post_id);
if ( $post ) {
$where .= $wpdb->prepare(" AND my_post_parent.post_type = %s ", $post->post_type);
}
}
return $where;
}
function my_posts_join($join) {
global $wpdb;
$join .= " LEFT JOIN {$wpdb->posts} as my_post_parent ON ({$wpdb->posts}.post_parent = my_post_parent.ID) ";
return $join;
}
function my_bind_media_uploader_special_filters($query) {
add_filter('posts_where', 'my_posts_where');
add_filter('posts_join', 'my_posts_join');
return $query;
}
add_filter('ajax_query_attachments_args', 'my_bind_media_uploader_special_filters');
Cuando abra el diálogo del cargador de medios mientras edita una publicación (publicación / página / CPT), verá solo imágenes adjuntas a este tipo de publicación específica.
Si desea que funcione solo para un tipo de publicación específico (digamos páginas), deberá cambiar la condición de la my_posts_where
función de la siguiente manera:
function my_posts_where($where) {
global $wpdb;
$post_id = false;
if ( isset($_POST['post_id']) ) {
$post_id = $_POST['post_id'];
$post = get_post($post_id);
if ( $post && 'page' == $post->post_type ) { // you can change 'page' to any other post type
$where .= $wpdb->prepare(" AND my_post_parent.post_type = %s ", $post->post_type);
}
}
return $where;
}