JSFiddle - React, Tailwind, and code Playground
by Stas Orekhovskiy
JavaScript
$args = array('category' => 22);
$posts = get_posts( $args );
foreach( $posts as $post ) : setup_postdata($post); ?>
<!-- Begin post -->
<div class="post">
<div class="title_post">
<span></span>
<h3 class="title_post"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
</div>
<div class="image_post">
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(100, 100)); ?></a>
</div>
<div class="descrip_post">
<p><?php the_content(); ?></p>
</div>
</div>
<!-- End post -->
<?php endforeach; ?>