Konuyu dağıtmayalım lütfen!
Kodları tam olarak alıp nereye eklemem gerektiği konusunda yardımcı olabilir misiniz?
<?php $recent = new WP_Query("showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<div class="anasayfayazican">
reklam kodunu koy
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php excerpt('18'); ?>
</div>
<?php endwhile; ?>
<?php $recent = new WP_Query("showposts=2&offset=3"); while($recent->have_posts()) : $recent->the_post();?>
<div class="anasayfayazican">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php excerpt('18'); ?>
</div>
<?php endwhile; ?>excerpt kodunu benim temadan kopyaladım onu contentle değiştirirsin.