30 lines
914 B
PHP
30 lines
914 B
PHP
<div style="background-color: #f2f2f2">
|
|
<div class="principals">
|
|
<h2>Нам доверяют</h2>
|
|
<div class="owl-carousel principals-slider">
|
|
|
|
<?php
|
|
$posts = get_posts( array(
|
|
'numberposts' => 0,
|
|
'category' => 0,
|
|
'orderby' => 'date',
|
|
'order' => 'ASC',
|
|
'include' => array(),
|
|
'exclude' => array(),
|
|
'meta_key' => '',
|
|
'meta_value' =>'',
|
|
'post_type' => 'armanty_partners',
|
|
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
|
|
) );
|
|
|
|
foreach( $posts as $post ){
|
|
setup_postdata($post);
|
|
?>
|
|
<img src="<?php echo the_post_thumbnail_url() ?>" alt="<?php the_title() ?>">
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|