Как в wordpress в post type убрать вывод слова архивы перед рубрикой, крошках и мета тайтле?
вот напр. есть в function регистрация типа записей
стоит has_archive' => true
и во всех рубриках при выводе
<?php wp_title("", true); ?>
выводится перед названием "Архив"
вот function.php
add_action( 'init', 'register_post_types_init5' );
function register_post_types_init5() {
$labels = array(
'name' => 'Услуги',
'singular_name' => 'Услуга',
'add_new' => 'Добавить новую',
'add_new_item' => 'Добавить новую услугу',
'edit_item' => 'Редактировать',
'new_item' => 'Новая услуга',
'all_items' => 'Все услуги',
'view_item' => 'Просмотр услуги на сайте',
'search_items' => 'Искать услугу',
'not_found' => 'Услуги не найдено.',
'not_found_in_trash' => 'В корзине не найдено.',
'menu_name' => 'Услуги'
);
$rptArgs = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'has_archive' => true,
'menu_position' => 20,
'show_in_rest' => true,
'supports' => array( 'title', 'custom-fields', 'thumbnail', 'editor'),
'taxonomies' => array( 'services_cat', )
);
register_post_type('services', $rptArgs);
}