• 27-05-2009, 00:23:05
    #1
    Selamlar

    arkadaslar ben sitemde kayitli olan bütün tagleri "Tags" isimli ayri bir sayfada göstermek istiyorum. Bunu nasil yaparim?

    Cevaplariniz icin simdiden tesekkürler
  • 27-05-2009, 00:48:38
    #3
    Google´de 1.sayfada cikan bütün sitelere girip yazilanlari uyguladim ama hicbiri olmuyor. Hep kodlarda hata cikiyor. Ordaki siteye yazanlarda yapamamis. Dogru dürüst calisan kod yokmu ya
  • 27-05-2009, 00:58:34
    #4
    şurada anlatmıştım.

    https://www.r10.net/wordpress/372263-...post1058649554

    --

    ayrı bir etiket sayfası oluşturmak ve etiketleri bu sayfada listelemek için

    <?php
    /*
    Template Name: Etiketler
    */
    ?>
    <?php get_header(); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    ">
    <h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
    <?php wp_tag_cloud('number=50&unit=pt'); ?>
    <?php endwhile; endif; ?>
    <!--/content --><?php get_sidebar(); ?><?php get_footer(); ?>
    Bu kodları etiket.php dosyasına yazarak wp-content/themes/tema-ismi bölümüne at.Daha sonra sayfa yazma bölümünden başlığı yazıp, sayfa şablonundan Etiketler'i seçip yayınla.

    ben bu şekilde kullanıyorum sitelerimde.
  • 27-05-2009, 01:00:34
    #5
    KuDReTeaM adlı üyeden alıntı: mesajı görüntüle
    şurada anlatmıştım.
    https://www.r10.net/wordpress/372263-...post1058649554
    --
    ayrı bir etiket sayfası oluşturmak ve etiketleri bu sayfada listelemek için
    <?php
    /*
    Template Name: Etiketler
    */
    ?>
    <?php get_header(); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    ">
    <h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
    <?php wp_tag_cloud('number=50&unit=pt'); ?>
    <?php endwhile; endif; ?>
    <!--/content --><?php get_sidebar(); ?><?php get_footer(); ?>
    Bu kodları etiket.php dosyasına yazarak wp-content/themes/tema-ismi bölümüne at.Daha sonra sayfa yazma bölümünden başlığı yazıp, sayfa şablonundan Etiketler'i seçip yayınla.
    ben bu şekilde kullanıyorum sitelerimde.
    Ok sagol arkadasim. Bende bi alman sitesinde bulup uyarladim. Simdi istedigim gibi oldu.

    Kod su sekildedir

    <?php
    /*
    Template Name: Wolke
    */
    ?>
    <?php get_header(); ?><?php get_sidebar(); ?><div id=”content”><?php if (have_posts()) : while (have_posts()) : the_post(); /* Loop */ ?>
    	<div class="inhalt">
    		<?php the_content(); ?>
                <div class="wolke"><?php wp_tag_cloud('smallest=10&largest=22&unit=px&number=5000'); ?></div>
    	</div>
    <?php endwhile; endif; ?><!–/content –><?php get_footer(); ?>
  • 27-05-2009, 01:04:46
    #6
    rica ederim, mantık olarak aynı işlevsellikte kodlar. iyi çalışmalar.