<?php $posts = get_posts( "category=KATEGORI-ID&numberposts=KONU-SAYISI" ); ?>
<?php if( $posts ) : ?>
<div class="section" id="modernScience">
<h2>KATEGORI ADI</h2>
<ul>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<li><span class="date"><?php the_time('F j'); ?></span> <a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>KATEGORI-ID => Hangi kategoriden yazı çekmek istiyorsan o kategoriye ait ID numarası
KONU-SAYISI => Kaç konu listeleneceğini yazabilirsin
KATEGORI ADI => Başlık olarak istediğin birşey yazabilirsin
oldu hocam çok teşekkürler