либо вам нужно делать так: single-{post_type}.php (
https://codex.wordpress.org/Post_Type_Templates)
либо, если нужен сингл для
определенной записи:
создайте single-custom-template.php с нужным шаблоном
затем в файле functions.php темы нужно добавить
add_filter( 'template_include', 'single_post_template');
function single_post_template( $template ) {
if ( is_single( // здесь укажите id вашей записи ) ) {
$new_template = locate_template( array( 'single-custom-template.php' // здесь указывается файл шаблона вашей записи ) );
if ( '' != $new_template ) {
return $new_template ;
}
}
return $template;
}