Я надеялся, что кто-то может мне помочь, я пытаюсь, чтобы поле ACF отображалось в категории Wordpress l oop, но я не могу ничего показать. Это мой текущий код:
<?php
$term_id = get_queried_object_id();
$taxonomy = 'product_cat';
$terms = get_terms([
'taxonomy' => $taxonomy,
'hide_empty' => false,
'parent' => get_queried_object_id()
]);
foreach ( $terms as $term ) {
$term_link = get_term_link( $term, $taxonomy );
$term_id = get_queried_object()->term_id;
$post_id = 'product_cat_'.$term_id;
$catimage = get_field('category_page_image', $post_id);
echo $catimage['url'];
}
?>
Кто-нибудь знает, где я ошибаюсь?
Большое спасибо,
Джеймс