Вывести посты из категории в любое место на wordpress

07 мая 2018

Случается так в жизни что нужно выводить информацию на страницах в wordpress, а как это сделать, да все очень просто:

Нужно помнить что в данном куске кода используется библиотека bfiThumb в качестве обрезки и вывода изображения из ACF поля!

<?php
$args = array(
    'cat' => '1',
    'post_type' => 'post',
    'posts_per_page' => 3
); ?>
<?php query_posts($args); ?>
<div class="news_anons">
    <?php while (have_posts()) : the_post(); ?>
        <article class="news_anons__item">
            <div class="image">
                <?php
                    $params = array( 'width' => 80, 'height' => 80 );
                    $bfi_image = bfi_thumb(get_field('image'), $params);
                ?>
                <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img data-src="<?php echo $bfi_image; ?>" alt="<?php the_title(); ?>" class="lazy"></a>
            </div>
            <div class="news_anons__info">
                <div class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></div>
                <div class="excerpt"><?php the_excerpt(); ?></div>
            </div>
        </article>
    <?php endwhile; ?>
</div>
<?php wp_reset_query(); ?>