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(); ?>