// регистрируем тип записей Новости
function register_news_entities() {
$news_args = array(
'public' => true,
'label' => null,
'labels' => array(
'name' => 'Новости',
'singular_name' => 'Новость',
'add_new' => 'Добавить новость',
'add_new_item' => 'Добавление новости',
'edit_item' => 'Редактирование новости',
'new_item' => 'Новая новость',
'view_item' => 'Смотреть новость',
'search_items' => 'Искать новости',
'not_found' => 'Не найдено',
'not_found_in_trash' => 'Не найдено в корзине',
'parent_item_colon' => '',
'menu_name' => 'Новости',
),
'menu_position' => 5,
'menu_icon' => 'dashicons-welcome-widgets-menus',
'rewrite' => array( 'slug' => 'news' ),
'has_archive' => true
);
register_post_type( 'news', $news_args );
}
add_action( 'init', 'register_news_entities' );
так и на всякий случай сюда /news/archive-news.php
<?php the_field('price_disclaimer'); ?>