uchastie.php
2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
function fenix_uchastie ($atts, $content)
{
$atts = shortcode_atts(
array(
'category_name' => '',
'id' => ''
),
$atts,
'fenix_uchastie'
);
$out = '';
if ($atts['category_name']!=='')
{
$out_parts = array(
'slides' => ''
);
$args = array(
'numberposts' => -1,
'category_name' => $atts['category_name'],
'post_type' => 'post',
'order' => 'ASC'
);
$posts = get_posts($args);
foreach($posts as $key=>$post)
{
setup_postdata( $post );
$out_parts['slides'].=
'<div class="carousel-item col-12 col-md-6 d-md-block me-md-0'.($key===0?' active':'').'">'.
$post->post_content.
'</div>';
}
wp_reset_postdata();
unset($key, $post, $posts, $args);
$out = ''.
'<!--Активно участвуем в образовательной -->'.
'<div id="'.$atts['id'].'" class="container fenix_uchastie '.$atts['category_name'].'">'.
'<div class="row">'.
'<div class="col-12 pt-3 pt-md-5">'.
'<h1>'.$atts['title'].'</h1>'.
$content.
'<!--карусель-->'.
'<div id="slider-'.$atts['id'].'" class="carousel slide" data-bs-interval="false" data-ride="carousel" data-pause="hover">'.
'<div class="carousel-inner row m-auto">'.
$out_parts['slides'].
'</div>'.
'<button class="carousel-control-prev d-flex d-md-none justify-content-center rounded-pill bg-color-7 text-color-6" type="button" data-bs-target="#slider-'.$atts['id'].'" data-bs-slide="prev" data-icon="arrow_left"></button>'.
'<button class="carousel-control-next d-flex d-md-none justify-content-center rounded-pill bg-color-7 text-color-6" type="button" data-bs-target="#slider-'.$atts['id'].'" data-bs-slide="next" data-icon="arrow_right"></button>'.
'</div>'.
'<div class="text-center pt-4 d-none">'.
'<a href="#" class="btn btn-lg btn-style-0 rounded-pill">Больше</a>'.
'</div>'.
'</div>'.
'</div>'.
'</div>';
unset($out_parts);
}
return $out;
}
add_shortcode('fenix_uchastie', 'fenix_uchastie');