WordPress Genel Fonksiyonlar

WordPress Genel Fonksiyonlar

Header (Üst kısım)

 

Blog Karakter Kodlaması

<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php

bloginfo('charset'); ?>" />

 

Blog Başlığı

<?php

global $page, $paged;

wp_title( '|', true, 'right' );

bloginfo( 'name' );

$site_description = get_bloginfo( 'description', 'display' );

if ( $site_description && ( is_home() || is_front_page() ) )

echo " | $site_description";

if ( $paged >= 2 || $page >= 2 )

echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );

?>

 

Stil Dosyası

<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

 

Blog Anasayfa Adresi

<?php echo get_option('home'); ?>

 

Blog Başlığı

<?php bloginfo('name'); ?>

 

Logo H1

<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>

 

Sayfaların Listelenmesi

<?php wp_list_pages('title_li='); ?>

 

Arama Kutusu

<form method="get" id="searchform" action="<?php echo get_option('home'); ?>" >

<input type="text" name="s" id="s" class="kutu" />

<input type="submit" value="Ara" />

</form>

Index (İçerik kısmı)

Yazı Öncesi Fonksiyonu

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

 

Yazı Başlık Bölümü

<h2 class="yazi-baslik"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

 

Yazı Adresi

<?php the_permalink(); ?>

 

Yazı Başlığı

<?php the_title(); ?>

 

İçeriği Çağır

<?php the_content('', ''); ?>

 

Etiketleri Listele

<?php the_tags('', ', ', ''); ?>

 

Tarihi Görüntüle

<?php the_time('j F Y') ?>

 

Kategoriyi Görüntüle

<?php the_category(', ') ?>

 

Yazarı Görüntüle

<?php the_author(', ') ?>

 

Yorum Sayısını Görüntüle

<?php comments_popup_link('Yorum Yok', '1 Yorum', '% Yorum'); ?>

 

Yazı Sonrası

<?php endwhile; ?>

<?php else : ?>

<h3>Birşey Bulunamadı</h3>

<p>Üzgünüz, aradığınız şey bulunamadı.</p>

<?php endif; ?>

 

Header - Üst Kısmı Çağır

<?php get_header(); ?>

 

Sidebar - Yan Kısmı Çağır

<?php get_sidebar(); ?>

 

Footer - Alt Kısmı Çağır

<?php get_footer(); ?>

 

Comments - Yorum Kısmını Çağır

<?php comments_template(); ?>

 

Sidebar (Yan kısım)

Örnek Sponsor Alanı

<a href="/" title="Sponsor Ol">

<img src="<?php bloginfo('template_directory'); ?>/resim/sponsor.png" alt="Sponsor" />

</a>

 

Kategorileri Listele

<?php wp_list_categories('show_count=0&title_li='); ?>

 

Bağlantıları Listele

<?php wp_list_bookmarks('title_li=&categorize=0'); ?>