bulduklarımı ekliyorum sizde eksik olan bişe varsa eklersiniz

Blog ismi
PHP Kodu:
<?php bloginfo('name'); ?>
Blog url
PHP Kodu:
<a href="<?php bloginfo('url'); ?>">
Son yazılmış 10 yazı
PHP Kodu:
<?php wp_get_archives('type=postbypost&limit=10'); ?>
Kategoriler
PHP Kodu:
<?php the_category(', ') ?>
Arşiv
PHP Kodu:
<?php wp_get_archives('type=monthly'); ?>
Zaman
PHP Kodu:
<?php the_time('F jS, Y') ?>
Yazıyı Yazan Kişi
PHP Kodu:
<?php the_author(); ?>
Yazarın Adı
PHP Kodu:
<?php the_author_firstname(); ?>
Yazarın Soyadı
PHP Kodu:
<?php the_author_lastname(); ?>
Yazarın Nicki
PHP Kodu:
<?php the_author_nickname(); ?>
Yazarın Emaili
PHP Kodu:
<?php the_author_email(); ?>
Yazarın MSN i
PHP Kodu:
<?php the_author_msn(); ?>
Yazarın AOL u
PHP Kodu:
<?php the_author_aol(); ?>
Yazarın İCQ su
PHP Kodu:
<?php the_author_icq(); ?>
Yazarın Websitesi
PHP Kodu:
<?php the_author_url(); ?>
Önceki Yazı
PHP Kodu:
<?php previous_post('« %','','yes') ?>
Sonraki Yazı
PHP Kodu:
<?php next_post(' % »','','yes') ?>
Arama Formu
PHP Kodu:
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
include sidebar
PHP Kodu:
<?php get_sidebar(); ?>
include header
PHP Kodu:
<?php get_header(); ?>
include footer
PHP Kodu:
<?php get_footer(); ?>