File: /home/rassvet-tk.ru/public_html/wp-content/themes/rassvettk/page-informaciya-dlya-pokupatelej.php
<?
/*
Template Name: Информация для покупателей
*/
get_header(); ?>
<section id="main">
<div class="container">
<div class="col-md-12">
<div class="row" style="margin-bottom: 50px;">
<div class="col-md-12">
<h1 class="main_p"><?php the_title(); ?></h1>
<hr class="hr_left">
</div>
</div>
<?
$args = array('numberposts' => -1, 'category' => '3,-43', );
$recent_posts_array = get_posts($args); // получаем массив постов
foreach( $recent_posts_array as $post ) :
setup_postdata($post);
$postid = $post -> ID;
?>
<div class="row">
<div class="col-md-12">
<div class="material_box blog_css">
<a href="<? echo(get_permalink( $recent_post_single ))?>"><?echo (get_the_post_thumbnail($postid)) ?></a>
<a href="<? echo(get_permalink( $recent_post_single ))?>"><p style="color: black; font-size: 18px;"><?php the_title(); ?> </p></a>
<span><?= get_the_date() ?></span> <br>
<div class="button_dalee" style="text-align: right;"><a href="<? echo(get_permalink( $recent_post_single ))?>" style="font-size: 18px;">Читать далее</a></div>
</div>
</div>
</div>
<?endforeach;?>
</div>
</section>
<? get_footer(); ?>