add files

This commit is contained in:
Andrey Kuvshinov
2025-07-09 21:21:17 +03:00
commit 8fc8cbae32
596 changed files with 207566 additions and 0 deletions

10
single-page.php Normal file
View File

@@ -0,0 +1,10 @@
<?php get_header(); ?>
<?php
while ( have_posts() ) : the_post();
var_dump(get_post_format());
get_template_part( 'content', get_post_format() );
$postcat = get_post_primary_category(get_the_ID());
$postcat = $postcat['primary_category'];
endwhile;
?>
<?php get_footer(); ?>