<?php
$today = current_time('mysql', 1);
if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_date_gmt < '$today' ORDER BY post_date DESC LIMIT 15")):
?>
<h2><?php _e("Son Mp3ler"); ?></h2>
<ul>
<?php
foreach ($recentposts as $post) {
if ($post->post_title == '')
$post->post_title = sprintf(__('Post #%s'), $post->ID);
echo "<li><a href='".get_permalink($post->ID)."'>";
the_title();
echo '</a></li>';
}
?>
</ul>
<?php endif; ?>
Bu kod işini görür son mp3ler yazan yeri değiştir çalışcaktır...DESC LIMIT 15 yazan yerdeki 15 sayısınıda kendine göre düzenlersin ana sayfadaki son konulardaki sayıyı belirtiyor....