<?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ı Konu: Custom Page Oluşturma !</title>
<link>http://www.wordpress-tr.com/forum/</link>
<description>WordPress Türkiye Forumları Konu: Custom Page Oluşturma !</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 01:53:55 +0000</pubDate>

<item>
<title>selcukhoca konu: "Custom Page Oluşturma !"</title>
<link>http://www.wordpress-tr.com/forum/topic/6133#post-30878</link>
<pubDate>Per, 26 Jun 2008 09:40:28 +0000</pubDate>
<dc:creator>selcukhoca</dc:creator>
<guid isPermaLink="false">30878@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Yukarıda verdiğiniz kodta mavi ile gösterilen yerde hata var. Baştan alalım isterseniz.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;&#60;a href=&#34;http://pastebin.ca/1056276&#34;&#62;Örnek Bir Etiket Sayfası Kodu&#60;/a&#62; :&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Bu kodu bir metin editörüne yapıştırın, .php uzantılı olarak kaydedip hostunuzda tema dosyanızın içine yükleyin. Herhangi bir sayfa oluşturduğunuzda sayfa şablonu kısmında yukarıda yüklediğiniz dosyanın adı gözükecektir. Sayfa şablonu kısmından ilgili yeri seçerek sayfayı kaydettiğiniz zaman etiket bulutu sayfası oluşur. Sayfalar bölümünde etiket bulutunun olduğu sayfanın bağlantısına tıklayarak etiket bulutuna ulaşılabilir.
&#60;/p&#62;</description>
</item>
<item>
<title>eylultoprak konu: "Custom Page Oluşturma !"</title>
<link>http://www.wordpress-tr.com/forum/topic/6133#post-30325</link>
<pubDate>Pts, 16 Jun 2008 16:31:06 +0000</pubDate>
<dc:creator>eylultoprak</dc:creator>
<guid isPermaLink="false">30325@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Öncelik ile ne sayfası olacak bu etiketleri sadece bir sayfada göstermek mi istiyorsunuz. Eğer öyle ise dışardan sayfa çekmeniz ve bu sayfaya config.php erişim vermeniz gerekli. ajax tab menü örneğinde bunun gibi birşey vardı ordaki kodları ve sayfa yapısını inceleye bilirsiniz. Simple tagging eklentisini kurup sayfalara gerekli kodu ekleyip etiketleri göstere bilirsiniz.
&#60;/p&#62;</description>
</item>
<item>
<title>Minare konu: "Custom Page Oluşturma !"</title>
<link>http://www.wordpress-tr.com/forum/topic/6133#post-30315</link>
<pubDate>Pts, 16 Jun 2008 14:18:43 +0000</pubDate>
<dc:creator>Minare</dc:creator>
<guid isPermaLink="false">30315@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_tag_cloud&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/wp_tag_cloud&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Burada denildigi gibi mesela tag arşiv sayfası olusturdum ama hata verdi. Yani sanırım biraz da tema yapısı ile ilgili bi şey.&#60;/p&#62;
&#60;p&#62;Temel kodları alırsam, ortada gozukecekleri halledebilirim aslında.&#60;/p&#62;
&#60;p&#62;Şunu denedim :&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
&#38;lt;?php /*&#60;br /&#62;
Template Name: Tag Archive&#60;br /&#62;
*/ ?&#38;gt;&#60;br /&#62;
&#60;div&#62;&#60;br /&#62;
&#38;lt;?php get_header(); ?&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;Tag Archive&#38;lt;/h2&#38;gt;&#60;br /&#62;
&#38;lt;?php wp_tag_cloud(''); ?&#38;gt;&#60;br /&#62;
	&#60;div class=&#34;navigation&#34;&#62;&#60;br /&#62;
&#60;div class=&#34;alignleft&#34;&#62;&#38;lt;?php next_posts_link('« Older Entries') ?&#38;gt;&#60;/div&#62;&#60;br /&#62;
&#60;div class=&#34;alignright&#34;&#62;&#38;lt;?php previous_posts_link('Newer Entries »') ?&#38;gt;&#60;/div&#62;&#60;br /&#62;
	&#60;/div&#62;&#60;br /&#62;
&#38;lt;?php if (have_posts()) : ?&#38;gt;&#60;br /&#62;
		&#38;lt;?php while (have_posts()) : the_post(); ?&#38;gt;&#60;br /&#62;
		&#38;lt;h2&#38;gt;&#60;a&#62;&#34; rel=&#34;bookmark&#34; title=&#34;Permanent Link to &#38;lt;?php the_title(); ?&#38;gt;&#34;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#60;/a&#62;&#38;lt;/h2&#38;gt;&#60;br /&#62;
	&#60;div class=&#34;entry&#34;&#62;&#60;br /&#62;
	&#38;lt;?php the_content('Read the rest of this entry »'); ?&#38;gt;&#60;br /&#62;
	&#60;/div&#62;&#60;/p&#62;
&#60;p&#62;	&#38;lt;?php endwhile; ?&#38;gt;&#60;br /&#62;
	&#38;lt;?php endif; ?&#38;gt;&#60;br /&#62;
&#60;/div&#62;&#60;br /&#62;
&#38;lt;?php get_footer(); ?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Satır 5 de hata var dedi.&#60;/p&#62;
&#60;p&#62;Yardımcı olursanız cok sevinirim.&#60;/p&#62;
&#60;p&#62;Selametle
&#60;/p&#62;</description>
</item>
<item>
<title>Minare konu: "Custom Page Oluşturma !"</title>
<link>http://www.wordpress-tr.com/forum/topic/6133#post-30284</link>
<pubDate>Paz, 15 Jun 2008 16:53:13 +0000</pubDate>
<dc:creator>Minare</dc:creator>
<guid isPermaLink="false">30284@http://www.wordpress-tr.com/forum/</guid>
<description>&#60;p&#62;Selamun aleykum&#60;/p&#62;
&#60;p&#62;Kendime özel custom page oluşturmak istiyorum.&#60;br /&#62;
mesela blogdizinim.com/sayfam.php&#60;/p&#62;
&#60;p&#62;Bunun icin örnek sayfa kodu verebilecek varmı  ?&#60;/p&#62;
&#60;p&#62;Tşk
&#60;/p&#62;</description>
</item>

</channel>
</rss>
