﻿<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress Türkiye Forumları Etiket: etiketler</title>
<link>http://www.wordpress-tr.com/forum/</link>
<description>WordPress Türkiye Forumları Etiket: etiketler</description>
<language>en</language>
<pubDate>Thu, 20 Nov 2008 18:41:52 +0000</pubDate>

<item>
<title>yakuphan konu: "Gelişmiş Etiket Bulutu Bileşeni v1.1"</title>
<link>http://www.wordpress-tr.com/forum/topic/8001#post-37660</link>
<pubDate>Paz, 26 Oct 2008 19:14:13 +0000</pubDate>
<dc:creator>yakuphan</dc:creator>
<guid isPermaLink="false">37660@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Bileşenin yeni sürümünü (v1.1) yayınladım. Daha önceki sürümü (v1.0) kullananlar lütfen bileşeni güncellesinler. Yeni sürümle küçük bir bug düzeltilmiştir.&#60;br /&#62;
Bileşen için &#60;a href=&#34;http://www.yakupgovler.com/?p=381&#34;&#62;buyurun&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>yakuphan konu: "Gelişmiş Etiket Bulutu Bileşeni v1.1"</title>
<link>http://www.wordpress-tr.com/forum/topic/8001#post-37630</link>
<pubDate>Cts, 25 Oct 2008 21:24:47 +0000</pubDate>
<dc:creator>yakuphan</dc:creator>
<guid isPermaLink="false">37630@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;@eylultoprak, konuyu şöyle bir araştırdım.&#60;br /&#62;
WP'nin wp_tag_cloud fonksiyonu ile bunu yapmak mümkün değil, çünkü bu fonksiyon her zaman için yazı sayılarına göre etiketleri alıyor. Ayrıca fonksiyon sonuçta get_terms isimli bir fonksiyonu çağırıyor. Bu fonksiyon da sıralama için name, count vs. gibi seçenekler dışında bir seçenek sunmuyor. Bu fonksiyona küçük ekleme ile ve wp_tag_cloud fonksiyonunun kodlarını farklı şekilde kullanarak rastgele etiket çekmeyi başardım ancak çekilen etiketleri isme ya da yazı sayısına göre sıralama işlemi basit yollardan yapılamıyor (karmaşık yollarını da bilmiyorum :-) ). Etiketleri rastgele seçip yazdırmak için şunları yapıp, bileşen dışında yan menüye ekleyeceğiniz kodlarla işinizi halledebilirsiniz.&#60;/p&#62;
&#60;p&#62;Öncelikle wp-includes/taxonomy.php dosyasını açın, function &#38;#38;get_terms fonksiyon başlangıcı içerisinde aşağıdaki kodu bulun&#60;/p&#62;
&#60;p&#62;	if ( 'count' == $orderby )&#60;br /&#62;
		$orderby = 'tt.count';&#60;br /&#62;
	else if ( 'name' == $orderby )&#60;br /&#62;
		$orderby = 't.name';&#60;br /&#62;
	else if ( 'slug' == $orderby )&#60;br /&#62;
		$orderby = 't.slug';&#60;br /&#62;
	else if ( 'term_group' == $orderby )&#60;br /&#62;
		$orderby = 't.term_group';&#60;br /&#62;
	else&#60;br /&#62;
		$orderby = 't.term_id';&#60;/p&#62;
&#60;p&#62;bu kodu şu hale getirin.&#60;/p&#62;
&#60;p&#62;	if ( 'count' == $orderby )&#60;br /&#62;
		$orderby = 'tt.count';&#60;br /&#62;
	else if ( 'name' == $orderby )&#60;br /&#62;
		$orderby = 't.name';&#60;br /&#62;
	else if ( 'slug' == $orderby )&#60;br /&#62;
		$orderby = 't.slug';&#60;br /&#62;
	else if ( 'term_group' == $orderby )&#60;br /&#62;
		$orderby = 't.term_group';&#60;br /&#62;
	else if ( 'rand' == $orderby)&#60;br /&#62;
	    $orderby = 'RAND()';&#60;br /&#62;
	else&#60;br /&#62;
		$orderby = 't.term_id';&#60;/p&#62;
&#60;p&#62;böylece bu fonksiyon için 'orderby' parametresi için yeni bir seçenek tanımlamış olduk. Ardından etiket bulutunu yan menüde göstermek için yan menüye aşağıdaki kodları kendi yan menünüze uygun olarak ekleyin.&#60;/p&#62;
&#60;p&#62;&#38;lt;*li&#38;gt;&#38;lt;*h2&#38;gt;Etiket Bulutu&#38;lt;*/h2&#38;gt;;&#60;br /&#62;
&#38;lt;*?php&#60;br /&#62;
//Aşağıdaki kodlar wp_tag_cloud fonksiyonunun aynısı olup,&#60;br /&#62;
//$parametre değişkenini uygun şekilde değiştirin.&#60;br /&#62;
//Değişken içerisindeki orderby=&#38;gt;'rand' değeri rastgele seçmeyi sağlayacak.&#60;br /&#62;
//Diğer parametre değerleri hakkında bilgi için &#60;a href=&#34;http://www.yakupgovler.com/?p=363&#34; rel=&#34;nofollow&#34;&#62;http://www.yakupgovler.com/?p=363&#60;/a&#62;&#60;br /&#62;
 $parametreler = array(&#60;br /&#62;
  'smallest' =&#38;gt; 8,&#60;br /&#62;
  'largest' =&#38;gt; 22,&#60;br /&#62;
  'unit' =&#38;gt; 'pt',&#60;br /&#62;
  'number' =&#38;gt; 40,&#60;br /&#62;
  'format' =&#38;gt; 'flat',&#60;br /&#62;
  'orderby' =&#38;gt; 'rand',&#60;br /&#62;
  'order' =&#38;gt; 'ASC',&#60;br /&#62;
  'exclude' =&#38;gt;'',&#60;br /&#62;
  'include' =&#38;gt;'',&#60;br /&#62;
);&#60;/p&#62;
&#60;p&#62;$tags = get_tags( $parametreler ); //Bu satır değişmek zorundaydı.&#60;/p&#62;
&#60;p&#62;if ( empty($tags) )&#60;br /&#62;
  return;&#60;/p&#62;
&#60;p&#62;$return = wp_generate_tag_cloud( $tags, array_merge($parametreler, array('orderby'=&#38;gt;'name')) );&#60;br /&#62;
if ( is_wp_error( $return ) )&#60;br /&#62;
  return false;&#60;br /&#62;
$return = apply_filters( 'wp_tag_cloud', $return, $args );&#60;br /&#62;
echo $return;&#60;br /&#62;
?*&#38;gt;;&#60;br /&#62;
&#38;lt;*/li&#38;gt;&#60;/p&#62;
&#60;p&#62;Yıldızları silmeyi unutmayın.
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Gelişmiş Etiket Bulutu Bileşeni v1.1"</title>
<link>http://www.wordpress-tr.com/forum/topic/8001#post-37628</link>
<pubDate>Cts, 25 Oct 2008 19:32:33 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">37628@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Yakup hocan; Ellerin dert görmesin. ve.. senin için, bizim için, dünyadaki diğer wordpress halkı için artık eklentilerinizi &#60;a href=&#34;http://wordpress.org/extend/plugins/&#34;&#62;eklenti dizini&#60;/a&#62;'ne ekleyin.. Ayrıca simple tag eklentisinde mevcut olan, başka herhangi bir eklentide mevcut olmayan dinamik etiket bulutu (Rast gele etiket bulutu) eklentisine doğru geliştirmeni çok isterim.. Ben değil dünya wordpress halkı da ister =) &#60;/p&#62;
&#60;p&#62;Bunun da senden gelmesini ve wordpress eklenti dizininde olmasını çok isterim.. =) Şu rast gele etiketler bileşeni olayına artık başla ya =)&#60;/p&#62;
&#60;p&#62;Bunun içinde çok sağol teşekkür ederim..
&#60;/p&#62;</description>
</item>
<item>
<title>yakuphan konu: "Gelişmiş Etiket Bulutu Bileşeni v1.1"</title>
<link>http://www.wordpress-tr.com/forum/topic/8001#post-37610</link>
<pubDate>Cts, 25 Oct 2008 14:18:23 +0000</pubDate>
<dc:creator>yakuphan</dc:creator>
<guid isPermaLink="false">37610@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Teşekkürler. Aynı bileşenin Bağlantılar için olanını da yakın zamanda yazmayı düşünüyorum. Elimde artık böyle bir bileşen kalıbı oldu, bunu değiştirip, değiştirip kullanacağım. :-)
&#60;/p&#62;</description>
</item>
<item>
<title>mavinefes konu: "Gelişmiş Etiket Bulutu Bileşeni v1.1"</title>
<link>http://www.wordpress-tr.com/forum/topic/8001#post-37609</link>
<pubDate>Cts, 25 Oct 2008 14:16:06 +0000</pubDate>
<dc:creator>mavinefes</dc:creator>
<guid isPermaLink="false">37609@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;valla iyi olmuş bu yakup kullanmak isteyenler için güzel bir widget
&#60;/p&#62;</description>
</item>
<item>
<title>yakuphan konu: "Gelişmiş Etiket Bulutu Bileşeni v1.1"</title>
<link>http://www.wordpress-tr.com/forum/topic/8001#post-37608</link>
<pubDate>Cts, 25 Oct 2008 14:11:19 +0000</pubDate>
<dc:creator>yakuphan</dc:creator>
<guid isPermaLink="false">37608@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;&#60;strong&#62;Uyarı:&#60;/strong&#62;&#60;em&#62; Bileşeni (v1.0) daha önceden indirenler lütfen bu sürümü indirip, bileşeni güncellesinler. v1.0'da farkettiğim bir bug bu sürümde düzeltilmiştir. Bug'ın bileşenin çalışmasına etkisi yoktu sadece Etiket Sıralama açılır kutusu aktif seçeneği varsayılan olarak göstermiyordu.&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Son zamanlarda forumda etiket bulutlarının özelleştirilmesiyle ilgili çok fazla soru gelmeye başladı. Bunun üzerine &#34;&#60;a href=&#34;http://www.yakupgovler.com/?p=381&#34;&#62;Gelişmiş Etiket Bulutu&#60;/a&#62;&#34; isimli bileşenimi yazdım.&#60;br /&#62;
Bileşeni indirmek, kurulum ve kullanım ile ilgili bilgi için &#60;a href=&#34;http://www.yakupgovler.com/?p=381&#34;&#62;buraya&#60;/a&#62; buyurun. Bileşen &#60;a href=&#34;http://www.yakupgovler.com/?p=363&#34;&#62;wp_tag_cloud&#60;/a&#62; fonksiyonunun aşağıdaki resimde göreceğiniz parametrelerini kontrol edebilmenizi ve kod bilgisi olmadan etiket bulutunu özelleştirebilmenizi sağlıyor.&#60;br /&#62;
&#60;img src=&#34;http://www.yakupgovler.com/tr/wp-content/dosyalar/2008/10/ekran_goruntusu_1.png&#34; alt=&#34;Gelişmiş Etiket Bulutu Bileşeni&#34; /&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "All in One Seo Pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/6193#post-30605</link>
<pubDate>Cum, 20 Jun 2008 23:51:33 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">30605@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Temanız ile alakalı olabilir. Default tema'da da aynı mı?&#60;br /&#62;
Eğer devlet sırrı değilse site adınız.&#60;br /&#62;
Site adınız yoksa.. Sitenin kaynak dosyasını görebilir miyim.&#60;br /&#62;
Ve siz simple tagging kullanmadığınıza emin misiniz. Genelde etiketler ile ilgili eklentiler bu duruma sebep oluyor.
&#60;/p&#62;</description>
</item>
<item>
<title>Melisss konu: "All in One Seo Pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/6193#post-30542</link>
<pubDate>Cum, 20 Jun 2008 00:51:03 +0000</pubDate>
<dc:creator>Melisss</dc:creator>
<guid isPermaLink="false">30542@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;yani all in one seo pack kullanan herkes etiket yazınca keywordsun devamında etikete yazdıklarımı cıkıyor.ne alaka?&#60;/p&#62;
&#60;p&#62;&#60;div class=&#34;uyari&#34;&#62;&#60;a href=&#34;http://www.wordpress-tr.com/forum/topic/1?replies=1&#34;&#62;Forum kuralları&#60;/a&#62;nı okuyun.&#60;/div&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Melisss konu: "All in One Seo Pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/6193#post-30541</link>
<pubDate>Cum, 20 Jun 2008 00:43:34 +0000</pubDate>
<dc:creator>Melisss</dc:creator>
<guid isPermaLink="false">30541@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;hayır kullanmıyorum kullanayımmı?
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "All in One Seo Pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/6193#post-30528</link>
<pubDate>Per, 19 Jun 2008 20:14:30 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">30528@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Simple taggin kullanıyor musunuz.
&#60;/p&#62;</description>
</item>
<item>
<title>Melisss konu: "All in One Seo Pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/6193#post-30519</link>
<pubDate>Per, 19 Jun 2008 18:07:57 +0000</pubDate>
<dc:creator>Melisss</dc:creator>
<guid isPermaLink="false">30519@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Wordpress 2.5 i kullanıyorum.bunun yanında eklenti olarak all in one seo packi kullanıyorum.&#60;br /&#62;
Simdi sıkıntım şu;&#60;br /&#62;
diyelimki bir post hazırladım.&#60;br /&#62;
title zaten postun title ı ile aynı oluyor.&#60;br /&#62;
all in one seo packe geliyorum,icine manuel olarak keywords ve description yazıyorum.etiketler kısmına geliyorum etiketlerimi yazıyorum.ve postu kaydedıyorum.daha sonradan incelem yaptıgımda,,,,,etiketlere yazmıs oldugum kelimeleri keywordste goruyorum.fakat ben bunu istemiyorum.nasıl olacak şimdi bu? benim kafam karıstı,bu wordpressın etıketlerının ozellıgımıydı all ın one seo packınmı....yada etıketlere yazdıgım kelımeler keywordsde kullanılmasın dıye bı secenek var benmı bılmıyorum vs? ıyıce karıstı  kafam.all in one seo packtaki ayarlarda assagıdaki gibi&#60;br /&#62;
&#60;a href=&#34;http://i249.photobucket.com/albums/gg202/eda199/allin1.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i249.photobucket.com/albums/gg202/eda199/allin1.jpg&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://i249.photobucket.com/albums/gg202/eda199/allin2.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i249.photobucket.com/albums/gg202/eda199/allin2.jpg&#60;/a&#62;&#60;br /&#62;
teskkurler sımdıden
&#60;/p&#62;</description>
</item>
<item>
<title>canarkadas konu: "Etiket Sayfası"</title>
<link>http://www.wordpress-tr.com/forum/topic/5247#post-26507</link>
<pubDate>Paz, 06 Apr 2008 22:55:25 +0000</pubDate>
<dc:creator>canarkadas</dc:creator>
<guid isPermaLink="false">26507@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://www.wordpress-tr.com/forum/topic/206&#34;&#62;Buradan&#60;/a&#62; yararlanarak yeni sayfa oluşturur, bu sırada bulut kodunu girerek etiketleri gösterebilirsiniz, ayrıca &#60;a href=&#34;http://www.wordpress-tr.com/forum/topic/3978?replies=3&#34;&#62;burada&#60;/a&#62; da eklenti ile yapımına dair bilgi var, ayrıca bu konu forumda &#60;a href=&#34;http://www.wordpress-tr.com/forum/topic/4002?replies=4#post-20767&#34;&#62;tartışıldı&#60;/a&#62; lütfen yeni sorularınıza verdiğim linklerden devam ediniz..
&#60;/p&#62;</description>
</item>
<item>
<title>teknomenu konu: "Etiket Sayfası"</title>
<link>http://www.wordpress-tr.com/forum/topic/5247#post-26505</link>
<pubDate>Paz, 06 Apr 2008 22:14:14 +0000</pubDate>
<dc:creator>teknomenu</dc:creator>
<guid isPermaLink="false">26505@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Merhaba, wordpress de sayfa oluşturma durumu malüm.Fakat benim istediğim şu şekilde..Etiketler diye bi sayfa oluşturacağım panelden ve etiketlerin o sayfada olmasını sağlaycağım..Bunu nasıl yapabilirim?&#60;br /&#62;
Etiket Sayfası.Nasıl ki sidebar.php de kullanıyorum daha fazla etiketle beraber etiketler sayfası yapacağım ??
&#60;/p&#62;</description>
</item>
<item>
<title>BilalTrksev konu: "Konuya ait etiketler"</title>
<link>http://www.wordpress-tr.com/forum/topic/4010#post-20827</link>
<pubDate>Çar, 26 Dec 2007 23:46:22 +0000</pubDate>
<dc:creator>BilalTrksev</dc:creator>
<guid isPermaLink="false">20827@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;tamam buldum &#60;/p&#62;
&#60;p&#62;&#38;lt;?php the_tags('Etiketler: ','&#38;gt; '); ?&#38;gt; &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.dmry.net/wordpress-23-tag-fonksiyonlari-the_tags#pst_tab&#34; rel=&#34;nofollow&#34;&#62;http://www.dmry.net/wordpress-23-tag-fonksiyonlari-the_tags#pst_tab&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>BilalTrksev konu: "Konuya ait etiketler"</title>
<link>http://www.wordpress-tr.com/forum/topic/4010#post-20824</link>
<pubDate>Çar, 26 Dec 2007 23:39:42 +0000</pubDate>
<dc:creator>BilalTrksev</dc:creator>
<guid isPermaLink="false">20824@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;şimdi her konuya etiketleri belirliyoruzya&#60;/p&#62;
&#60;p&#62;misal sibel yeniden doğuyor konusundaki taglar&#60;/p&#62;
&#60;p&#62;Etiketler: sibel, sibel ve ibo, sibelin doğuşu&#60;/p&#62;
&#60;p&#62;bu taglar kendi konusunda çıksın istiyorum
&#60;/p&#62;</description>
</item>
<item>
<title>heytbecom konu: "Konuya ait etiketler"</title>
<link>http://www.wordpress-tr.com/forum/topic/4010#post-20822</link>
<pubDate>Çar, 26 Dec 2007 23:14:25 +0000</pubDate>
<dc:creator>heytbecom</dc:creator>
<guid isPermaLink="false">20822@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;?
&#60;/p&#62;</description>
</item>
<item>
<title>BilalTrksev konu: "Konuya ait etiketler"</title>
<link>http://www.wordpress-tr.com/forum/topic/4010#post-20818</link>
<pubDate>Çar, 26 Dec 2007 22:51:34 +0000</pubDate>
<dc:creator>BilalTrksev</dc:creator>
<guid isPermaLink="false">20818@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;blogumda istedigim bir özellikli bir türlü bulamadım konuya ayit olan etikletlerin o konu altında çıkması . yardım ederseniz sevirim &#60;/p&#62;
&#60;p&#62;arkasiradakiler.org&#60;/p&#62;
&#60;p&#62;misal&#60;/p&#62;
&#60;p&#62;arkasiradakiler.net bir başka sitede var :&#124; böyle bir özellik&#60;/p&#62;
&#60;p&#62;Teşekkürler Şimdiden
&#60;/p&#62;</description>
</item>
<item>
<title>gevv konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16420</link>
<pubDate>Cum, 05 Oct 2007 22:44:07 +0000</pubDate>
<dc:creator>gevv</dc:creator>
<guid isPermaLink="false">16420@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;birde :) seo pack eklentisini kaldırdıktan sonra eklentinin kullanıldıgı bir konuyu düzenlemek istedigimde  özel alan kısmındaki degişikligi gördüm özel alannı artık bu şekilde kullanmayı düşünüyorunm :) eklenti fikir vermiş oldu :d&#60;br /&#62;
&#60;a href=&#34;http://img218.imageshack.us/img218/4060/adszyy4.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img218.imageshack.us/img218/4060/adszyy4.jpg&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>gevv konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16417</link>
<pubDate>Cum, 05 Oct 2007 21:42:28 +0000</pubDate>
<dc:creator>gevv</dc:creator>
<guid isPermaLink="false">16417@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;tamadır hallettim :) daha önceleri tercihler bölümünde Blog başlığı: bölümüne yazkılarım görünüyordu bende hiç birşey yazmıyordum bu seferde site adresi görünüyordu şimdi tekrar Blog başlığı: bölümüne istedigimi yazdım temada görünmüyor sanırım gösteren kodu silmişim :) &#60;/p&#62;
&#60;p&#62;bu arada söylediginiz kodu buldum sildim ama işe yaramadı neyse sorunu çözdümya yeter Teşekkürler
&#60;/p&#62;</description>
</item>
<item>
<title>aligon konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16416</link>
<pubDate>Cum, 05 Oct 2007 21:36:38 +0000</pubDate>
<dc:creator>aligon</dc:creator>
<guid isPermaLink="false">16416@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Düzeltme:&#60;br /&#62;
&#38;lt;title&#38;gt;&#38;lt;?php bloginfo('name'); ?&#38;gt; satırındaki &#60;strong&#62;name&#60;/strong&#62;'yi silmeniz gerekiyor.
&#60;/p&#62;</description>
</item>
<item>
<title>aligon konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16413</link>
<pubDate>Cum, 05 Oct 2007 21:18:37 +0000</pubDate>
<dc:creator>aligon</dc:creator>
<guid isPermaLink="false">16413@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;elimde var olan bir temaya göre konuşuyorum&#60;br /&#62;
header.php'de&#60;br /&#62;
php wp_title(xxx); ?&#38;gt;&#38;lt;/title&#38;gt;&#60;br /&#62;
yazan satırdaki xxx yazan kısmı silerseniz oluyor. en azından bende oldu. (xxx yazan yerde &#34;blog name&#34; yada &#34;blog info&#34; gibi bir ibare var. onu silmeniz gerekiyor.)
&#60;/p&#62;</description>
</item>
<item>
<title>gevv konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16412</link>
<pubDate>Cum, 05 Oct 2007 21:02:46 +0000</pubDate>
<dc:creator>gevv</dc:creator>
<guid isPermaLink="false">16412@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;seo pack eklentisini kaldırdım ama bu eklenti farklı bir sorunumuda çözmüştü :) yapılan ayarlarda site başlıgına yazdıklarım pencerede görünüyordu daha önce sitenin adresi vardı &#60;img src=&#34;http://img204.imageshack.us/img204/5994/adszyp4.jpg&#34; alt=&#34;&#34; /&#62;nasıl düzeltecegim hakkında bilgi edinememiştim :) bende normaldir herhalde dedim ama bu eklenti degiştirince belki gözden kaçmiş birşeyler vardır dedim pencerede site adresi yerine yazdıklarımın görünmesi için ne yapabilirim ?
&#60;/p&#62;</description>
</item>
<item>
<title>gevv konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16392</link>
<pubDate>Cum, 05 Oct 2007 16:10:56 +0000</pubDate>
<dc:creator>gevv</dc:creator>
<guid isPermaLink="false">16392@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;:d dha önce okumuştum ama şimdi anladım :) teşekkürler
&#60;/p&#62;</description>
</item>
<item>
<title>aligon konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16389</link>
<pubDate>Cum, 05 Oct 2007 13:45:18 +0000</pubDate>
<dc:creator>aligon</dc:creator>
<guid isPermaLink="false">16389@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;@gevv, özel alanda, konu içinde geçen kelimeleri yazmak zorunda değilsiniz (hatta yazmıyorsunuz). zaten daha önceden de bu konu hakkında bilgi verilmiş (&#60;a href=&#34;http://www.wordpress-tr.com/forum/topic/186?replies=3#post-808&#34;&#62;link&#60;/a&#62;)
&#60;/p&#62;</description>
</item>
<item>
<title>gevv konu: "Etiket özel alan + seo pack"</title>
<link>http://www.wordpress-tr.com/forum/topic/3199#post-16388</link>
<pubDate>Cum, 05 Oct 2007 13:41:29 +0000</pubDate>
<dc:creator>gevv</dc:creator>
<guid isPermaLink="false">16388@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;tamam o zaman şöyle yapıyorum etiketleri ve özel alanı kullanıyorum seo gidiryor  şimdi etiketlere konu ile ilgili kelimeleri az öz yazıyorum özel alanada yi ne konu içinde geçen kelimleri yazıyorum
&#60;/p&#62;</description>
</item>

</channel>
</rss>
