JSFiddle - React, Tailwind, and code Playground

by Stas Orekhovskiy

JavaScript

<?php
	$args = array('category' => 1);
	$posts = get_posts( $args );
	$title_category = get_the_category_by_ID(1);
	foreach( $posts as $post ) : setup_postdata($post); ?>
		<div class="title">
			<h2><?php echo $title_category; ?></h2>
		</div>
		<div class="posts clear">
			<!-- 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 -->
		</div>
	<?php endforeach; ?>