Non sono sicuro al 100% se risolvo il tuo problema, ma ... Forse questo ti aiuterà ...
L'uploader multimediale ottiene allegati in modo semplice WP_Query
, quindi puoi utilizzare molti filtri per modificarne i contenuti.
L'unico problema è che non puoi interrogare post con CPT specifico come genitore usando WP_Query
argomenti ... Quindi, dovremo usare posts_where
e posts_join
filtrare.
Per essere sicuri, cambieremo solo la query del caricatore multimediale, che useremo ajax_query_attachments_args
.
Ed è così che appare, quando combinato:
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');
Quando apri la finestra di dialogo dell'uploader multimediale durante la modifica di un post (post / pagina / CPT), vedrai solo le immagini allegate a questo specifico tipo di post.
Se desideri che funzioni solo per un tipo di post specifico (diciamo pagine), dovrai modificare le condizioni in my_posts_where
funzione in questo modo:
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;
}