A
A
Alexandra2020-07-03 11:11:04
WordPress
Alexandra, 2020-07-03 11:11:04

How to get wp custom post type categories?

Hello everyone, I created a taxonomy for custom posts called product, I would like to display a list of all available taxonomies, I can’t figure out how to do this, taxonomy code

add_action( 'init', 'create_taxonomy' );
function create_taxonomy(){

  // список параметров: wp-kama.ru/function/get_taxonomy_labels
  register_taxonomy( 'categories', [ 'product' ], [ 
    'label'                 => '', // определяется параметром $labels->name
    'labels'                => [
      'name'              => 'Категории',
      'singular_name'     => 'Категория',
      'search_items'      => 'Найти категорию',
      'all_items'         => 'Все категории',
      'view_item '        => 'Смотреть категории',
      'parent_item'       => 'Родительская категория',
      'parent_item_colon' => 'Родительская категория:',
      'edit_item'         => 'Редактировать категорию',
      'update_item'       => 'Обновить категорию',
      'add_new_item'      => 'Добавить категорию',
      'new_item_name'     => 'Новое название категории',
      'menu_name'         => 'Категории',
    ],
    'description'           => '', // описание таксономии
    'public'                => true,
    'publicly_queryable'    => null, // равен аргументу public
    'show_in_nav_menus'     => true, // равен аргументу public
    'show_ui'               => true, // равен аргументу public
    'show_in_menu'          => true, // равен аргументу show_ui
    'show_tagcloud'         => true, // равен аргументу show_ui
    'show_in_quick_edit'    => null, // равен аргументу show_ui
    'hierarchical'          => true,
    // 'rewrite'               => array( 'hierarchical' => true ),

    'rewrite'               => true,
  ] );
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Y
yarovikov, 2020-07-03
@AlexaShemetova

$terms = get_terms( 'categories' );

foreach ( $terms as $term ) {
  // формируете список 
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question