Visualizza tutti i post in un tipo di post personalizzato, raggruppati in base a una tassonomia personalizzata
7 risposta
- voti
-
- 2011-11-04
Hotrovato una soluzione utilizzando una querypersonalizzatae quindi raggruppandola conilterminenome:
SELECT * FROM wp_term_taxonomy AS cat_term_taxonomy INNER JOIN wp_terms AS cat_terms ON cat_term_taxonomy.term_id = cat_terms.term_id INNER JOIN wp_term_relationships AS cat_term_relationships ON cat_term_taxonomy.term_taxonomy_id = cat_term_relationships.term_taxonomy_id INNER JOIN wp_posts AS cat_posts ON cat_term_relationships.object_id = cat_posts.ID INNER JOIN wp_postmeta AS meta ON cat_posts.ID = meta.post_id WHERE cat_posts.post_status = 'publish' AND meta.meta_key = 'active' AND meta.meta_value = 'active' AND cat_posts.post_type = 'member' AND cat_term_taxonomy.taxonomy = 'member_groups'
Quindi,utilizzando unanormale queryforeach,posso semplicementeestrarre leinformazioni che desidero.
Ma sono ancorainteressato a un altromodo,seesiste,magari utilizzando lefunzioni di Wordpress.
I found a solution by using a custom query and then grouping it with the term name:
SELECT * FROM wp_term_taxonomy AS cat_term_taxonomy INNER JOIN wp_terms AS cat_terms ON cat_term_taxonomy.term_id = cat_terms.term_id INNER JOIN wp_term_relationships AS cat_term_relationships ON cat_term_taxonomy.term_taxonomy_id = cat_term_relationships.term_taxonomy_id INNER JOIN wp_posts AS cat_posts ON cat_term_relationships.object_id = cat_posts.ID INNER JOIN wp_postmeta AS meta ON cat_posts.ID = meta.post_id WHERE cat_posts.post_status = 'publish' AND meta.meta_key = 'active' AND meta.meta_value = 'active' AND cat_posts.post_type = 'member' AND cat_term_taxonomy.taxonomy = 'member_groups'
Then by just using a regular foreach query I can just extract the information I want.
But I'm still interested in another way if there is, maybe by using Wordpress' own functions.
-
Ho appena aggiunto unmetodo alternativo.Tendo a rifuggire datutto ciò che richiede query SQLnonelaborate.I've just added an alternative method. I tend to shy away from anything that requires raw SQL queries.
- 0
- 2012-01-25
- Chip Bennett
-
Sono contento di vedere questo contrassegnato come la risposta corretta,anche se la query smette difunzionarein wordpress se lo schema cambia ad un certopunto ... Il concetto di raccoglierlituttiin una singola query è la risposta corretta.L'iterazioneper raggruppare letassonomiein phpnon scalerà altrettantobene come lofarà.I'm glad to see this marked as the correct answer, even if the query stops working in wordpress if the schema changes at some point... The concept of collecting them all in a single query is the correct answer. Iteration to group the taxonomies in php wont scale nearly as well as this will.
- 3
- 2013-11-12
- wowo_999
-
OMG,stai seriamente scrivendo querynonelaborate?Probabilmente sei appenaentratonelmondo di WP ononti seimaipreoccupato di seguirnegli standard.La rispostanon dovrebbeessere selezionata.OMG, Are you serious writing raw query? Probably, you have just jumped into the WP world or never bother following its standards. The answer should not be selected.
- 0
- 2020-07-01
- pixelngrain
-
- 2012-01-25
Quindi,potresti considerare di automatizzare le querymultiple.
Innanzitutto,ottieni l'elenco deitermininellatuatassonomiapersonalizzata,utilizzando
get_terms()
:<?php $member_group_terms = get_terms( 'member_group' ); ?>
Quindi,passain rassegna ciascuna diesse,eseguendo ogni volta unanuova query:
<?php foreach ( $member_group_terms as $member_group_term ) { $member_group_query = new WP_Query( array( 'post_type' => 'member', 'tax_query' => array( array( 'taxonomy' => 'member_group', 'field' => 'slug', 'terms' => array( $member_group_term->slug ), 'operator' => 'IN' ) ) ) ); ?> <h2><?php echo $member_group_term->name; ?></h2> <ul> <?php if ( $member_group_query->have_posts() ) : while ( $member_group_query->have_posts() ) : $member_group_query->the_post(); ?> <li><?php echo the_title(); ?></li> <?php endwhile; endif; ?> </ul> <?php // Reset things, for good measure $member_group_query = null; wp_reset_postdata(); } ?>
Non riesco a vederenulla diparticolarmente sbagliato in questo approccio,sebbenepossa avere una capacità di scalabilità limitata (adesempio,se hai centinaia omigliaia dimembri oterminimember_group,potresti vedereprestazioniproblemi).
So, you might consider automating the multiple queries.
First, get the list of terms in your custom taxonomy, using
get_terms()
:<?php $member_group_terms = get_terms( 'member_group' ); ?>
Then, loop through each one, running a new query each time:
<?php foreach ( $member_group_terms as $member_group_term ) { $member_group_query = new WP_Query( array( 'post_type' => 'member', 'tax_query' => array( array( 'taxonomy' => 'member_group', 'field' => 'slug', 'terms' => array( $member_group_term->slug ), 'operator' => 'IN' ) ) ) ); ?> <h2><?php echo $member_group_term->name; ?></h2> <ul> <?php if ( $member_group_query->have_posts() ) : while ( $member_group_query->have_posts() ) : $member_group_query->the_post(); ?> <li><?php echo the_title(); ?></li> <?php endwhile; endif; ?> </ul> <?php // Reset things, for good measure $member_group_query = null; wp_reset_postdata(); } ?>
I can't see anything particularly wrong with this approach, though it may have a limited ability to scale (i.e. if you have hundreds or thousands of members, or member_group terms, you may see performance issues).
-
Sì,funzionaperfettamente. Ho solo unproblema. Voglio visualizzare campipersonalizzati come questo Phpget_post_meta ($member_group_term-> ID,'job_title',true);?> Manon hafunzionato. Hoprovato anche con $post-> IDmanon hafunzionato,potresti aiutare @Chip Bennettperfavore?Yes it wordks perfectly.Only one issue i have.I wanna display cutom fields like this ID, 'job_title', true);?> but it didnt work.I also tried with $post->ID but no didnbt work,could you help @Chip Bennett please?
- 0
- 2015-12-21
- Anahit DEV
-
- 2012-04-04
ancorapiù semplice:
$terms = get_terms('tax_name'); $posts = array(); foreach ( $terms as $term ) { $posts[$term->name] = get_posts(array( 'posts_per_page' => -1, 'post_type' => 'post_type', 'tax_name' => $term->name )); }
All'interno dell'array $posts risultante,ogniterminefiscale è la chiaveper un arraynidificato contenentei suoipost.
even simpler:
$terms = get_terms('tax_name'); $posts = array(); foreach ( $terms as $term ) { $posts[$term->name] = get_posts(array( 'posts_per_page' => -1, 'post_type' => 'post_type', 'tax_name' => $term->name )); }
Within the resultant $posts array, each tax term is the key to a nested array containing its posts.
-
- 2013-01-24
Avevoesattamente questaesigenzae la soluzione di Chip hafunzionato,tranneper una cosa:il campo
'field' => 'slug'
è obbligatorio.foreach ( $service_categories as $category ) { $services = new WP_Query( array( 'post_type' => 'service', 'tax_query' => array( array( 'taxonomy' => 'service_category', 'terms' => array( $category->slug ), 'operator' => 'IN', 'get' => 'all', 'field' => 'slug' ) ) ) ); ?> <h2><?php echo $category->slug; ?></h2> <?php if ( $services->have_posts() ) { // loop stuff goes here ?>
Avevo anchebisogno che la visualizzazione risultantefossepiatta,quindi
'get' => 'all'
èimpostato qui.Si spera che questo aiuti qualcun altro.
I had this exact need, and Chip's solution worked, except for one thing:
'field' => 'slug'
is required.foreach ( $service_categories as $category ) { $services = new WP_Query( array( 'post_type' => 'service', 'tax_query' => array( array( 'taxonomy' => 'service_category', 'terms' => array( $category->slug ), 'operator' => 'IN', 'get' => 'all', 'field' => 'slug' ) ) ) ); ?> <h2><?php echo $category->slug; ?></h2> <?php if ( $services->have_posts() ) { // loop stuff goes here ?>
I also needed the resulting display to be flat, so
'get' => 'all'
is set here.Hopefully this helps somebody else out.
-
- 2011-11-05
$query = new WP_Query( array ( 'post_type' => 'member', 'orderby' => 'meta_value', 'meta_key' => 'member_group' ) );
Quindi,quando siesegueil ciclo di questa query,èpossibile utilizzare semplicemente unif lungo queste linee (nellopseudocodicephp)
$groupName = ""; $counter = 0; if havePosts: while havePosts: thePost if( $groupName != post->meta_value ) { if ($counter > 0) { </ul> } <h1>A group name</h1> <ul> <li>member name</li> } else { <li>member name</li> } endwhile;endif </ul>
Spero che questo aiuti.Penso chetu lo stia rendendomoltopiù complicato di quanto avrebbe dovutoessere.
Ulterioriinformazioni: http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
$query = new WP_Query( array ( 'post_type' => 'member', 'orderby' => 'meta_value', 'meta_key' => 'member_group' ) );
Then when you loop through this query you could just use an if along these lines (in php pseudocode)
$groupName = ""; $counter = 0; if havePosts: while havePosts: thePost if( $groupName != post->meta_value ) { if ($counter > 0) { </ul> } <h1>A group name</h1> <ul> <li>member name</li> } else { <li>member name</li> } endwhile;endif </ul>
I hope that helps. I think you were making this far more complicated than it needed to be.
More information: http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
-
- 2015-02-11
Ho dovutofarlo su unprogetto annifa. Risposta simile a djb,solo con qualche dettaglioin più. Questoprodurràtuttii nomi dellatuatassonomia come h3,con unelencopuntato di ciascuntitolo delpost collegato alla loropagina dei dettagli.
<?php // Output all Taxonomies names with their respective items $terms = get_terms('member_groups'); foreach( $terms as $term ): ?> <h3><?php echo $term->name; // Print the term name ?></h3> <ul> <?php $posts = get_posts(array( 'post_type' => 'member', 'taxonomy' => $term->taxonomy, 'term' => $term->slug, 'nopaging' => true, // to show all posts in this taxonomy, could also use 'numberposts' => -1 instead )); foreach($posts as $post): // begin cycle through posts of this taxonmy setup_postdata($post); //set up post data for use in the loop (enables the_title(), etc without specifying a post ID) ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> <?php endforeach; ?>
I had to do this on a project years ago. Similar answer to djb, just with a bit more details. This will output all of your taxonomy names as an h3, with a bulleted list of each post title linked to their detail page.
<?php // Output all Taxonomies names with their respective items $terms = get_terms('member_groups'); foreach( $terms as $term ): ?> <h3><?php echo $term->name; // Print the term name ?></h3> <ul> <?php $posts = get_posts(array( 'post_type' => 'member', 'taxonomy' => $term->taxonomy, 'term' => $term->slug, 'nopaging' => true, // to show all posts in this taxonomy, could also use 'numberposts' => -1 instead )); foreach($posts as $post): // begin cycle through posts of this taxonmy setup_postdata($post); //set up post data for use in the loop (enables the_title(), etc without specifying a post ID) ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> <?php endforeach; ?>
-
- 2017-04-22
Beh,è un vecchiothread,ma se qualcunopassa comeme,questopotrebbe aiutare. L'idea è dimodificare la queryprincipalein modo danon dover andare suimodellie generarenuove querye cicli ...
PS: ancora datestarein grandi db. È stato soddisfacentenelmio caso.
function grouped_by_taxonomy_main_query( $query ) { if ( $query->is_home() && $query->is_main_query() ) { // Run only on the homepage $post_ids = array(); $terms = get_terms('my_custom_taxonomy'); foreach ( $terms as $term ) { $post_ids = array_merge( $post_ids, get_posts( array( 'posts_per_page' => 4, // as you wish... 'post_type' => 'my_custom_post_type', // If needed... Default is posts 'fields' => 'ids', // we only want the ids to use later in 'post__in' 'tax_query' => array( array( 'taxonomy' => $term->taxonomy, 'field' => 'term_id', 'terms' => $term->term_id, )))) // getting posts in the current term ); } $query->query_vars['post_type'] = 'my_custom_post_type'; // Again, if needed... Default is posts $query->query_vars['posts_per_page'] = 16; // If needed... $query->query_vars['post__in'] = $post_ids; // Filtering with the post ids we've obtained above $query->query_vars['orderby'] = 'post__in'; // Here we keep the order we generated in the terms loop $query->query_vars['ignore_sticky_posts'] = 1; // If you dont want your sticky posts to change the order } } // Hook my above function to the pre_get_posts action add_action( 'pre_get_posts', 'grouped_by_taxonomy_main_query' );
Well, it's an old thread, but if someone passes by as I did, this might help. The idea is to modify the main query so we don't need to go the templates and generate new queries and loops...
PS: Yet to be tested in large dbs. It was satisfactory in my case.
function grouped_by_taxonomy_main_query( $query ) { if ( $query->is_home() && $query->is_main_query() ) { // Run only on the homepage $post_ids = array(); $terms = get_terms('my_custom_taxonomy'); foreach ( $terms as $term ) { $post_ids = array_merge( $post_ids, get_posts( array( 'posts_per_page' => 4, // as you wish... 'post_type' => 'my_custom_post_type', // If needed... Default is posts 'fields' => 'ids', // we only want the ids to use later in 'post__in' 'tax_query' => array( array( 'taxonomy' => $term->taxonomy, 'field' => 'term_id', 'terms' => $term->term_id, )))) // getting posts in the current term ); } $query->query_vars['post_type'] = 'my_custom_post_type'; // Again, if needed... Default is posts $query->query_vars['posts_per_page'] = 16; // If needed... $query->query_vars['post__in'] = $post_ids; // Filtering with the post ids we've obtained above $query->query_vars['orderby'] = 'post__in'; // Here we keep the order we generated in the terms loop $query->query_vars['ignore_sticky_posts'] = 1; // If you dont want your sticky posts to change the order } } // Hook my above function to the pre_get_posts action add_action( 'pre_get_posts', 'grouped_by_taxonomy_main_query' );
Sto lavorando a unapagina dimembriin cui utilizzo untipo dipostpersonalizzato con unatassonomiapersonalizzata.Ilmiotipo dipostpersonalizzato si chiama
member
e lamiatassonomiapersonalizzata si chiamamember_groups
.Desideroelencaretuttii membrima raggrupparlinei rispettivigruppi.
Quindi,peressere chiari,ho 35membri divisiin 9gruppi,quindiinvece difare la stessa querynove volte,vogliofarlo una volta,ma raggrupparliinsieme,in modo che Membro1,Membro4e Membro 11 siano raggruppatiinungruppo,chiamato "Marketing".
Sto usando
WP_Query
per recuperaretuttii post sottoilmembro deltipo dipost.Hoprovato diversitentativima senza risultato.Comeposso ottenerlo?