ben bunu x katagori içindeki yazıları göstermesini istiyorum nasıl yapabişlirim yardımcı olurmusunuz?
<div class="container" style="float:left;margin-left:-25%;width:150%;">
<br>
<!-- Begin of rows -->
<div class="row carousel-row">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="col-xs-8 col-xs-offset-2 slide-row">
<div class="slide-content" style="width:100%;margin-left:-20%;">
<a href="<?php the_permalink(); ?>"> <h4><?php the_title(''); ?></h4></a>
<p>
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
<img src="<?php echo $url ?>" alt="<?php the_title(''); ?>" style="width:50%;float:left;padding:5px;
margin-left:-2%;">
<?php echo strip_shortcodes(wp_trim_words( get_the_content(), 47 )); ?>
<br></p>
</div>