“WordPress erhalten Post -Taxonomie -Begriffe” Code-Antworten

Holen Sie sich Beiträge aus ausgewählter Taxonomie

$posts_array = get_posts(
    array(
        'posts_per_page' => -1,
        'post_type' => 'fabric_building',
        'tax_query' => array(
            array(
                'taxonomy' => 'fabric_building_types',
                'field' => 'term_id',
                'terms' => $cat->term_id,
            )
        )
    )
);
Lokesh003Coding

WordPress erhalten Taxonomie eines Beitrags

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

Holen Sie sich den Namen des Taxonomie in Singhlle 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

WordPress erhalten Post -Taxonomie -Begriffe

//Get selected terms of a post by taxonomy
$selectedTerms = wp_get_post_terms(get_the_ID(),'TAXONOMY_NAME');
foreach($selectedTerms as $term){
	echo $term->name;
}
gtamborero

Holen Sie sich einen Beitrag durch Taxonomie

<?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

WordPress erhalten die aktuelle Taxonomie

$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
echo $term->name; // will show the name
echo $term->slug; // will show the slug
gtamborero

Ähnliche Antworten wie “WordPress erhalten Post -Taxonomie -Begriffe”

Fragen ähnlich wie “WordPress erhalten Post -Taxonomie -Begriffe”

Weitere verwandte Antworten zu “WordPress erhalten Post -Taxonomie -Begriffe” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen