Sorununuzu doğru çözersem% 100 emin değilim, ama ... Belki bu size yardımcı olacaktır ...
Medya yükleyici ekleri basit bir şekilde alır WP_Query
, böylece içeriğini değiştirmek için birçok filtre kullanabilirsiniz.
Tek sorun, WP_Query
bağımsız CPT'ye sahip yayınları bağımsız değişken olarak üst öğe olarak sorgulayamamanızdır ... Bu nedenle, kullanmak posts_where
ve posts_join
filtrelemek zorunda kalacağız .
Yalnızca medya yükleyicisinin sorgusunu değiştireceğimizden emin olmak için kullanacağız ajax_query_attachments_args
.
Ve birleştirildiğinde şöyle görünüyor:
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');
Gönderiyi düzenlerken medya yükleyici iletişim kutusunu açtığınızda (gönderi / sayfa / CPT), yalnızca bu gönderi türüne iliştirilmiş resimleri görürsünüz.
Yalnızca belirli bir yazı türü için çalışmasını istiyorsanız (diyelim sayfalar), my_posts_where
işlevdeki koşulu şu şekilde değiştirmeniz gerekir:
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;
}