Как вывести записи в category.php из acf ?
Я создал группу в acf, запилил страницу отдельную
add_action( 'init', function () {
register_post_type( 'specialists', array(
'label' => 'Специалисты',
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'hierarchical' => false,
'rewrite' => true,
'supports' => array( 'title' ),
) );
} );
Пытаюсь вывести в category-7.php
<div id="primary">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<h1><?php the_field('custom_title'); ?></h1>
<img src="<?php the_field('hero_image'); ?>" />
<p><?php the_content(); ?></p>
<?php endwhile; ?>
</div><!-- #content -->
но пусто