Não tenho 100% de certeza se o seu problema está correto, mas ... Talvez isso ajude você ...
O Uploader de mídia obtém anexos de forma simples WP_Query
, para que você possa usar muitos filtros para modificar seu conteúdo.
O único problema é que você não pode consultar postagens com CPT específico como pai usando WP_Query
argumentos ... Portanto, teremos que usar posts_where
e posts_join
filtrar.
Para ter certeza, alteraremos apenas a consulta do upload de mídia, usaremos ajax_query_attachments_args
.
E é assim que parece, quando combinados:
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');
Ao abrir a caixa de diálogo do carregador de mídia durante a edição da postagem (postagem / página / CPT), você verá apenas imagens anexadas a esse tipo de postagem específico.
Se você deseja que ele funcione apenas para um tipo de postagem específico (digamos, páginas), será necessário alterar a condição na my_posts_where
função da seguinte maneira:
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;
}