Files
profile/archive.php

39 lines
963 B
PHP
Raw Normal View History

2025-07-09 21:21:17 +03:00
<!--[archive]-->
<?php get_header();?>
<div class="col-12 col-md-12 col-xl-9">
<?php get_template_part( "template-parts/archive/header" ) ?>
<?php if( is_post_type_archive() && !is_events() ) : ?>
<?php get_template_part( "template-parts/archive/list" ) ?>
<?php else : ?>
<?php get_template_part( "template-parts/archive/grid" ) ?>
2026-01-12 13:37:40 +03:00
<?php
// Выводим ajax-load-more только если элементов 20 или больше
global $wp_query;
if ( $wp_query->found_posts >= 20 ) :
?>
<?php get_template_part( "template-parts/archive/ajax-load-more" ) ?>
<?php endif; ?>
2025-07-09 21:21:17 +03:00
<?php endif; ?>
</div>
<div class="col-12 col-md-4 col-xl-3 d-none d-xl-block">
<?php get_template_part( "template-parts/sidebar/right-sidebar" ) ?>
</div>
<?php get_footer(); ?>
<!--[/archive]-->