Çok fazla kod bilgisine sahip olmadan wordpress teması yapmak istiyorsanız bu program tam size göre.En önemli avantajı yapacağınız temanın sadece size ait olması olacaktır.Üstelik sadece wordpress için değil joomla,drupal,blogger gibi pek çok platform için temalar hazırlayabilirsiniz.Programın kullanımı oldukça basit.bu konuda hazırlanmış bir videoyu sizlerle paylaşıyorum.
artisteer3 ile hazırlanmış örnek bir siteyi BURADAN ziyaret edebilirsiniz.

Reklam yerleşimi 1: konu üstüne ve konu altına reklam ekleme yapalım.
Görünüm – editör – ilgili temanızın single.php dosyasını açalım. Tekil yazı yani single.php dosyasını görüntüleyelim ve aşağıdaki kodu bulalım.
<?php the_content(); ?>
Hemen üstüne reklam kodunuzu yerleştirebilirsiniz. Her temada aynı kod olmayabiliyor, dolayısıyla single.php de bu bölümü bulup üstüne bir iki yazı ekleyerek test edip uygun yeri bulabilirsiniz. Aynı zamanda bu kodun altına reklam eklerseniz konu altında reklam çıkmış olur.
Yanyana 2 adsense kodu koymak için aşağıdaki kodu kullanın (reklam 1 ve reklam 2 yi silip istediğiniz kodu yerleştirin.):
<table width="100%" border="0"><tr>
<td>
Reklam 1
</td>
<td>
Reklam 2
</td>
</tr></table>
Yazının sağına veya soluna reklam eklemek için ise aşağıdaki kodu kullanalım (alttaki ve üstteki right yazısını left yaparsanız yazının soluna reklamı kor.)
<div style="float:right">
Reklam Kodu Buraya
</div>
<div style=”float:right”>
</div>
2-3 paragraflık konularınız varsa yazının soluna ve en alta 2 tane reklam koyarak iyi sonuç alabilirsiniz, fakat sitede durma oranı biraz düşebilir. Gelip giden geçici hit alıyorsanız kullanabilirsiniz.
Konu içine reklam yerleşimini hallettiğimize göre kategori, etiket ve anasayfaya geçebiliriz.
Ana sayfada konunun hemen üstüne koymak için index.php de aşağıdaki kodu bulun ve hemen üstüne reklam kodunu yerleştirebilirsiniz.
<!-- begin recent posts -->
<div class="recent">
Anasayfada en alta reklam kodu koymak için index.php de
<?php endwhile; ?> kodunun hemen altına reklam kodunu ekleyin. Arşiv içinde bu ikisi geçerlidir.
son eklenen konular
<?php wp_get_archives('type=postbypost&limit=15'); ?>
Kategoriler
<?php wp_list_cats(); ?>
Yorumlar
<?php
global $wpdb;
$sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,
comment_post_ID, comment_author, comment_date_gmt, comment_approved,
comment_type,comment_author_url,
SUBSTRING(comment_content,1,30) AS com_excerpt
FROM $wpdb->comments
LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =
$wpdb->posts.ID)
WHERE comment_approved = '1' AND comment_type = '' AND
post_password = ''
ORDER BY comment_date_gmt DESC
LIMIT 10";
$comments = $wpdb->get_results($sql);
$output = $pre_HTML;
$output .= "\n<ul>";
foreach ($comments as $comment) {
$output .= "\n<li>".strip_tags($comment->comment_author)
.":" . "<a href=\"" . get_permalink($comment->ID) .
"#comment-" . $comment->comment_ID . "\" title=\"on " .
$comment->post_title . "\">" . strip_tags($comment->com_excerpt)
."</a></li>";
}
$output .= "\n</ul>";
$output .= $post_HTML;
echo $output;?>
Etiketler
<?php wp_tag_cloud('smallest=8&largest=20'); ?>
Bağlantılar
<?php get_links_list(); ?>
Değişen Etiket Bulutu
<?php wp_tag_cloud('smallest=11&largest=25&unit=px&number=50&format=flat&orderby=count&order=RAND'); ?>
Benzer Yazılar
<?php
$this_post = $post;
$category = get_the_category(); $category = $category[0]; $category = $category->cat_ID;
$posts = get_posts('numberposts=4&offset=0&orderby=post_date&order=DESC&category='.$category);
$count = 0;
foreach ( $posts as $post ) {
if ( $post->ID == $this_post->ID || $count == 5) {
unset($posts[$count]);
}else{
$count ++;
}
}
?>
<?php if ( $posts ) : ?>
<ul>
<?php function getWords($text, $limit) {
$array = explode(" ", $text, $limit +1);
if(count($array) > $limit) {
unset($array[$limit]);
}
return implode(" ", $array); }
?>
<?php foreach ( $posts as $post ) : ?>
<?php $mycontent = strip_tags($post->post_content);
$excerpt = getWords($mycontent, 15);
$a_title = $excerpt . "..."; ?>
<li><a href="<?php the_permalink(); ?>" title="<?php echo $a_title ?>">
<?php if ( get_the_title() ) { the_title(); } else { echo "Untitle"; } ?></a>
<?php endforeach // $posts as $post ?>
</ul>
<?php endif // $posts ?>
<?php
$post = $this_post;
unset($this_post);
?>