7
respostas

Duas taxonomias no wordpress é possivel?

Na aula de wordpress, como criar seu tema do zero, tem a parte de taxonomia e lá é explicado como inserir taxonomia(exemplo:cidades), queria saber se é possivel colocar uma segunda taxonomia e se é possivel colocar para que o usuario coloque imagem nelas?

7 respostas

Fala Marcelo, tudo bom? acredito que esse vídeo pode ajudar: https://www.youtube.com/watch?v=7zYAsYihQ_k

Estou precisando agora trazer o titulo da taxonomia aonde estou; Segue código que estou tentando, mais não consigo

<div class="todos-representantes">



<?php    $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); ?>
<h2><?php echo $term->name; ?></h2>

<!-- LISTA PRODUTOS DE CATEGORIA -->
  <?php
    $taxQuery = array(
      array(
        'taxonomy' => 'estado',
        'field' => 'slug',
        'terms' => $_GET['taxonomy']
      )
    );
    $args = array(
      'post_type' => 'representantes',
      'tax_query' => $taxQuery
    );
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post();
  ?> 
  <div class="box-repre">
    <h1><?php the_title() ?></h1>
    <div class="info">
        <p><?php echo rwmb_meta('cidade-rep'); ?></p>
        <p><?php echo rwmb_meta('telefone-rep'); ?></p>
        <p><?php echo rwmb_meta('instagran-rep'); ?></p>
    </div>
  </div>
  <?php endwhile; ?>



</div>

Alguém consegue me responder?

Dá uma olhada nesse link, acho que pode ajudar: https://www.wpbeginner.com/wp-themes/how-to-show-the-current-taxonomy-title-url-and-more-in-wordpress/

Não consigo fazer aparecer, mesmo com a instruções, conseguem ver o erro, segue link no ar também: http://dallamakeup.com.br/onde-comprar/?taxonomy=para



<div class="todos-representantes">
<p class="nada"> Selecione um estado no mapa ao lado.</p>
<h1>

<?php $term = get_term_by( 'representantes', get_query_var( 'term' ), get_query_var( 'estado' ) ); 
echo $term->name; ?></h1>
<h2 class="titulo-pagina-rep"></h2>

<!-- LISTA PRODUTOS DE CATEGORIA -->
  <?php
    $taxQuery = array(
      array(
        'taxonomy' => 'estado',
        'field' => 'slug',
        'terms' => $_GET['taxonomy']
      )
    );
    $args = array(
      'post_type' => 'representantes',
      'tax_query' => $taxQuery
    );
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post();
  ?> 
  <div class="box-repre">
    <h2><?php the_title() ?></h2>
    <div class="info">
        <p><i class="fas fa-map-marker-alt"></i><?php echo rwmb_meta('cidade-rep'); ?></p>
        <p><i class="fas fa-phone"></i><?php echo rwmb_meta('telefone-rep'); ?></p>
        <p><i class="fab fa-instagram"></i><?php echo rwmb_meta('instagran-rep'); ?></p>
    </div>
  </div>

conseguem por favor ver isso ?

Precisava mesmo que me ajudassem com isso