File: /var/www/vhosts/greenclinic.kz/newsite/wp-content/themes/green-clinic/single-news.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package asds
*/
$categories = get_the_category( $the_post );
$categories_name = $categories[0]->name;
$categories_id = $categories[0]->term_id;
$categories_slug = $categories[0]->slug;
$the_post = get_the_ID();
get_header();
?>
<?php get_template_part( 'template-parts/content_header', 'none' ); ?>
<section class="section content_section">
<main id="primary" class="site-main container">
<div class="news-content">
<?php the_content(); ?>
</div>
</main><!-- #main -->
</section>
<?php get_template_part( 'blocks/blocks' ); ?>
<?php get_footer(); ?>