Fancybox.bind("[data-fancybox]", {
Carousel: {
Navigation: {
prevTpl:
'<button tabindex="0" title="Назад" class="f-button is-prev" data-carousel-prev="true">' +
' <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" tabindex="-1"><path d="M15 3l-9 9 9 9"></path></svg></button>' +
"</button>",
nextTpl:
'<button tabindex="0" title="Далее" class="f-button is-next" data-carousel-next="true">' +
' <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" tabindex="-1"><path d="M9 3l9 9-9 9"></path></svg></button>' +
"</button>",
},
},
tpl: {
closeButton:
'<button data-fancybox-close class="f-button is-close-btn" title="Закрыть">' +
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" tabindex="-1"><path d="M20 20L4 4m16 0L4 20"></path></svg>' +
"</button>",
},
});
<?php
$query = new WP_Query( array(
'posts_per_page' => -1,
'post_type' => 'victory',
'tax_query' => array(
array(
'taxonomy' => 'period',
'terms' => '2', // id категории можно узнать в админке при наведении на категорию
)
)
) );
$i = 1;
while ($query->have_posts()) {
$query->the_post();
?>
<?php
}
wp_reset_postdata(); // сброс
?>
<div class="tabs__content">
<div id="all" class="tabs__content-item owl-carousel owl-theme active">
<div class="slide">
<div class="invest-project-list">
<?php
$query = new WP_Query(array(
'post_type' => 'investproj',
'posts_per_page' => -1,
)
);
$i = 1;
while ($query->have_posts()) {
$query->the_post();
?>
<div class="invest-project-item">
<div class="item-img-wrapper">
<img class="item-img" src="<?php echo get_the_post_thumbnail_url(); ?>" alt="Недвижимость">
<div class="item-type-block"><p class="item-type">
<?php single_cat_title(''); ?>
</p>
</div>
</div>
<h3 class="item-title">Лидеры инноваций</h3>
<p class="item-subtitle">Акции инновационных компаний</p>
<span class="item-breakline"></span>
<div class="item-property">
<p>Доходность:</p>
<p><?php echo get_post_meta(get_the_ID(), 'profitability_text', true ); ?></p>
</div>
<div class="item-property">
<p>Сумма инвестиций от:</p>
<p><?php echo get_post_meta(get_the_ID(), 'invest_cash', true ); ?></p>
</div>
<div class="item-property">
<p>Срок инвестирования:</p>
<p><?php echo get_post_meta(get_the_ID(), 'invest_date', true ); ?></p>
</div>
<div class="item-property">
<p>Формат выплат:</p>
<p><?php echo get_post_meta(get_the_ID(), 'invest_format_mini', true ); ?></p>
</div>
<div class="item-property">
<p>Гарантии:</p>
<p><?php echo get_post_meta(get_the_ID(), 'invest_guaranties_mini', true ); ?></p>
</div>
<a class="btn detailed-button" href="<?php the_permalink(); ?>">Подробнее</a>
</div>
<?php
// это 6 блок
if( ! ($i++ % 6) ){
?>
</div>
</div><div class="invest-project-list">
<?php
}}
wp_reset_postdata(); // сброс
?>
</div>
</div>
</div>
</div>