У меня есть шаблон archive.php
Как сделать применение шаблона для категории например "Doctors" чтобы применялся шаблон "category-doctors.php"
А в остальных случаях "template-parts/archive.php"
Если постов нет то: "template-parts/content-none.php"
<section class="content">
<div class="container">
<div class="row">
<div class="col-md-8 col-12 pr-5">
<?php if ( have_posts() ) : ?>
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
<div class="row">
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/archive', get_post_type() );
endwhile;
?></div> <?php
else :
get_template_part( 'template-parts/content-none', 'none' );
endif;
?>
</div>
<?php
get_sidebar(); ?>
</div>
</div>
</section>