2. maddeyi yapabilmek için wpdb ve wp_query kullanmak gerekiyor. bunun için profesyonel destek almalısınız. örneğin son 10 yazıyı şöyle listeleyebilirsiniz.
<?php $fromblog = new WP_query(); $fromblog->query('showposts=10'); ?>
<?php global $wp_query; $wp_query->in_the_loop = true; ?>
<?php if ($fromblog->have_posts()) : ?>
<div class="index-posts">
<h1>Mini blogumdan son yazılar</h1>
<?php while ($fromblog->have_posts()) : $fromblog->the_post(); ?>
<ul>
<li><h6>
<span class="day">
<?php the_time('j F Y, H:i') ?> civarı:
</span>
"<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>" demişim.
</h6></li>
</ul>
<?php endwhile; ?>
<?php endif; ?>Sitemin ana sayfasındaki kısım...
http://www.serhatyolacan.com/