<?php $terms = get_terms( array(
'taxonomy' => 'product_cat',
'hide_empty' => true,
'pad_counts'=> true,
'orderby' => 'name',
'parent' => 0
) ); ?>
<?php if($terms) : ?>
<?php foreach($terms as $term) : ?>
<h2 class="subcategory-title"><a href="<?php echo get_term_link($term->term_id);?>"><?php echo $term->name;?></a></h2>
<!--<div class="subcategory-descripton"><p><?php //if($term->description) : ?><?php //echo $term->description; ?><?php //else: ?>Описание термина таксономии<?php //endif; ?></p></div>-->
<?php // Создаем массив терминов детей текущего термина текущей таксономии
$tax = $term->taxonomy;
$children_terms = get_terms( array(
'taxonomy' => $tax,
'hide_empty' => false,
'parent' => $term->term_id
) ); ?>
<?php if($children_terms): // если есть дочерние категории ?>
<ul><?php foreach ($children_terms as $children_term) : ?>
<?php $link = get_term_link($children_term); ?>
<li style="margin-left: 10px;"><a href="<?php echo $link ?>";><?php echo $children_term->name ?></a></li>
<!--<p class="count"><?php //echo $children_term->count ?></p>-->
<?php endforeach; ?></ul>
<?php endif; // конец условия - если есть дочерние термины таксономии ?>
<?php endforeach; ?>
<?php endif; ?>
<p class="count"><?php if ($term->count > 0) : ?><?php echo $term->count; ?><?php else: ?>0<?php endif; ?></p>
add_action( 'init', 'register_group_post_type' );
function register_group_post_type() {
// Слайдер - тип записи
register_post_type('slider', array(
'label' => 'Слайдер',
'labels' => array(
'name' => 'Слайдер',
'singular_name' => 'Слайдер',
'menu_name' => 'Слайдер',
'all_items' => 'Все слайды',
'add_new' => 'Добавить слайд',
'add_new_item' => 'Добавить новый слайд',
'edit' => 'Редактировать',
'edit_item' => 'Редактировать слайд',
'new_item' => 'Новый слайд',
),
'description' => 'Слайдер для главной страницы',
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_rest' => false,
'rest_base' => '',
'show_in_menu' => true,
'exclude_from_search' => false,
'capability_type' => 'post',
'map_meta_cap' => true,
'menu_icon' => 'dashicons-format-image',
'hierarchical' => false,
'rewrite' => false,
'has_archive' => false,
'query_var' => true,
'supports' => array( 'title', 'thumbnail' ),
) );
}
<?php
global $post;
$args = array( 'numberposts' => -1, 'post_type' => 'slider');
$myposts = get_posts( $args );
foreach($myposts as $post){ setup_postdata($post); ?>
<div class="item"><?php the_post_thumbnail();?></div>
<?php
}
wp_reset_postdata();
?>
<?php
$field = "meta_key";
$mechanism = get_field_object($field);
<?php echo $mechanism['label']; ?> - вывожу наименование поля
<?php echo $mechanism['value']; ?> - вывожу значение поля