• 30-03-2010, 08:55:35
    #1
    Üyeliği durduruldu
    Arkadaşlar Wordpress Sürüm 2.9.2 kullanıyorum, fakat bu simple tags eklentisini bir türlü yapamadım. Lütfen bu konu hakkında yardımcı olabilecek bir arkadaş varsa yardımını bekliyorum. İyi forumlar.
  • 30-03-2010, 15:00:39
    #2
    İndirdiğiniz eklentiyi açtıktan sonra siteniz/wp-content/plugins klasörünün içine dosyayı yükleyin.
    Yönetim paneli –> Eklentilerden Simple Tag eklentisini etkinleştirin.
    İlk önce style.css içine aşağıdaki kodları ekleyin.

    Alıntı
    /**
    * Style for Simple Tagging Plugin
    * http://sw-guide.de/wordpress/wordpre...agging-plugin/
    */
    /********* Tag Cloud *********/
    ul#tagcloud { padding:0; margin:0; text-align:center; list-style:none; }
    ul#tagcloud li { display:inline; font-size:70%; color:#ccc;}
    ul#tagcloud li a, ul#tagcloud li a:link { text-decoration:none; }
    ul#tagcloud li a:hover { text-decoration:underline; }
    ul#tagcloud li.t1 a { color:#797979; font-size: 120%; }
    ul#tagcloud li.t2 a { color:#6d6d6d; font-size: 160%; }
    ul#tagcloud li.t3 a { color:#616161; font-size: 190%; }
    ul#tagcloud li.t4 a { color:#555555; font-size: 210%; }
    ul#tagcloud li.t5 a { color:#484848; font-size: 230%; }
    ul#tagcloud li.t6 a { color:#3c3c3c; font-size: 250%; }
    ul#tagcloud li.t7 a { color:#303030; font-size: 270%; }
    ul#tagcloud li.t8 a { color:#242424; font-size: 290%; }
    ul#tagcloud li.t9 a { color:#181818; font-size: 310%; }
    ul#tagcloud li.t10 a { color:#0c0c0c; font-size: 330%; }
    /********* Related Posts *********/
    #stprelated { margin-top: 30px; padding: 10px; background-color: #f8f8f8; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
    #stprelated h3 { margin:0; padding:0; font-size: 90%; }
    #stprelated ul { margin: 0; padding:0; font-size: 90%; }
    #stprelated ul li { margin: 0; padding:0 0 0 15px; }
    /********* Related Tags *********/
    li#relatedtags ul li {
    text-indent: 0;
    list-style:none;
    background: 0 none;
    font-size: 120%;
    }
    li#relatedtags ul li:before {
    content: “”;
    }
    li#relatedtags ul li span {
    margin-right: .5em;
    }
    Daha sonra sitenizde etikeleri göstermek için aşağıdaki kodu temanızın index.php ye ekliyoruz.
    Alıntı
    <?php if (class_exists(‘SimpleTagging’)) {
    echo ‘<br />Etiketler: ‘;
    STP_PostTags();
    } ?>
    Sitenizde etiket bulutunu göstermek için sitebar.php ye aşağıdaki kodu ekleyoruz.

    Alıntı
    <div id=”content” class=”narrowcolumn”>
    <h3>Etiket Bulutu</h3>
    <?php if (class_exists(‘SimpleTagging’)) : ?>
    <ul id =”tagcloud”>
    <?php STP_Tagcloud(); ?>
    </ul>
    <?php endif; ?>
    </div>
    Lütfen Adımları takip ediniz style.css, index.php ve sidebar.php nizin yedeğini almayı unutmayınız.
  • 31-03-2010, 15:50:07
    #3
    Üyeliği durduruldu
    Arkadaşım Çok Teşekkür Ederim Yardımların İçin.