“Uzyskaj post według taksonomii” Kod odpowiedzi

WordPress otrzymuje taksonomię postu

//Get all terms (names) of a taxonomy of a post
$term_obj_list = get_the_terms( $post->ID, 'taxonomy_name' ); ?>
gtamborero

Uzyskaj nazwę taksonomii w Singhle Post

// RETRIVE TERM SLUG ( for single.php or template-part )

$terms = get_the_terms( $post->ID, 'your-taxonomy' );
if ( !empty( $terms ) ){
    // get the first term
    $term = array_shift( $terms );
    echo $term->slug;
}
Bad Booby

Uzyskaj post według taksonomii

<?php
     $taxonomy = 'my_taxonomy'; // this is the name of the taxonomy
     $terms = get_terms($taxonomy);
     $args = array(
        'post_type' => 'post',
        'tax_query' => array(
                    array(
                        'taxonomy' => 'updates',
                        'field' => 'slug',
                        'terms' => wp_list_pluck($terms,'slug')
                    )
                )
        );

     $my_query = new WP_Query( $args );
     if($my_query->have_posts()) :
         while ($my_query->have_posts()) : $my_query->the_post();

              // do what you want to do with the queried posts

          endwhile;
     endif;
  ?>
Foolish Ferret

Uzyskaj post według taksonomii

foreach ($myterms as $term) :

$args = array(
    'tax_query' => array(
        array(
            $term->slug
        )
    )
);

//  assigning variables to the loop
global $wp_query;
$wp_query = new WP_Query($args);

// starting loop
while ($wp_query->have_posts()) : $wp_query->the_post();

the_title();
blabla....

endwhile;

endforeach;
Foolish Ferret

Odpowiedzi podobne do “Uzyskaj post według taksonomii”

Pytania podobne do “Uzyskaj post według taksonomii”

Więcej pokrewnych odpowiedzi na “Uzyskaj post według taksonomii” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu