Создайте файл "some-single.php"
и после этого создайте "some-yourCategoryName"
. Теперь откройте single.php
и замените get_template_part('content','single');
следующим кодом
следующим:
if(is_category('yourCategoryName')){
get_template_part('content','yourCategoryName');
}else{
get_template_part('content','single.php');
}
Все будет хорошо.