lista kategorii custom post

pobranie listy category name & link custom post

      <?php $args = array(
      'taxonomy' => 'my-category',
      'orderby' => 'name',
      'order' => 'ASC',
      'show_count' => 0,
      'pad_counts' => 0,
      'hierarchical' => 1,
      'title_li' => '',
      'hide_empty' => 1
      ); ?>
      <ul class="house-category">
        <?php wp_list_categories( $args ); ?>
      </ul>

pozwala schować puste kategorie – 'hide_empty’ => 1

Wordpress

Hope this helps and happy coding :)

Zobacz jeszcze

paginacja custom post Wordpress

tworzenie pętli custom wpisów z podziałem ich wykazu na strony: <?php $args = array( 'post_type' => 'event', 'posts_per_page' => 16, 'orderby' => 'post_date',...

pobranie nazwy kategorii przez custom fields - taxonomy

w polu custom fields taxonomy odznaczamy single term object: <?php $term = get_field('taxonomy_field_name'); if( $term ): ?> <h2><?php echo $term->name;...