Son Yazılar için ;
<h1>Son Yazılar</h1>
<div class="submenu">
<ul>
<?php query_posts('showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a> - <?php the_time('m-d-Y') ?></li>
<?php endwhile;?>
</ul>Kategoriler İçin <h1><?php _e(Kategoriler); ?></h1>
<div class="submenu">
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
</ul>Sayfalar İçin <h1>Sayfalar</h1>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
yada
<?php wp_list_pages('title_li=' . __('Sayfalar:')); ?>Son Yorumlar için <h2><?php _e('Son Yorumlar'); ?></h2>
<?php if (function_exists('get_recent_comments')) { ?>
<?php get_recent_comments(); ?>
<?php } ?>Arşiv İçin <h2>Arşiv</h2>
<ul class="counts">
<?php wp_get_archives('type=monthly&limit=12&show_post_count=1'); ?>
</ul>Yazı Bilgileri için <h4>Yazı Bilgileri:</h4>
<div class="about-entry">
<?php the_time('j F Y l') ?> günü, <?php the_time() ?> gibi <?php the_category(', ') ?> kategorisinde yayınlanmış, <?php comments_rss_link('RSS 2.0'); ?> ile takip edebilir, <a href="#respond">yorum bırakabilir</a> yada <a href="<?php trackback_url(display); ?>">geri izleme</a> ile siteniz üzerinden takip edebilirsiniz.Rastgele Etiketler için <h3>Rastgele Etiketler</h3>
<?php wp_tag_cloud('smallest=8&largest=22&number=30&orderby=count&order=RAND'); ?>Yazının Etiketleri için
Alıntı
<small><?php the_tags( '<p>Etiketler: ', ', ', '</p>'); ?></small>
Arşivimde duruyormuş paylaşayım dedim.