Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Kupası
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPress Arşivlerinin Kenar Çubuğunuzdaki Görüntüsü Nasıl Özelleştirilir?

Editoryal Not: WPBeginner üzerindeki ortak bağlantılardan komisyon kazanıyoruz. Komisyonlar, editörlerimizin görüşlerini veya değerlendirmelerini etkilemez. Editoryal Süreç hakkında daha fazla bilgi edinin.

WordPress arşivlerinizin kenar çubuğunda nasıl görüntüleneceğini özelleştirmeniz mi gerekiyor?

Varsayılan WordPress arşiv widget’ı sınırlı özelleştirme sunar. Yazı arşivlerinizin daha az alan kullanmasını, daha fazla bilgi görüntülemesini veya daha çekici bir görünüme sahip olmasını isteyebilirsiniz.

Bu makalede, WordPress arşivlerinin kenar çubuğunuzdaki görünümünü nasıl özelleştireceğinizi göstereceğiz.

How to Customize the Display of WordPress Archives in Your Sidebar

WordPress Arşivlerinin Kenar Çubuğunuzdaki Görüntüsünü Neden Özelleştirmelisiniz?

WordPress web siteniz, aylık blog yazısı arşiv bağlantılarını kenar çubuğunda görüntülemenizi sağlayan bir arşiv widget’ı ile birlikte gelir.

Widget’ın iki özelleştirme seçeneği vardır: arşiv listesini bir açılır menü olarak görüntüleyebilir ve her ay için gönderi sayılarını görüntüleyebilirsiniz.

The Default WordPress Archives Widget

Ancak, kenar çubuğu arşiv listenizi farklı şekilde görüntülemek isteyebilirsiniz. Örneğin, siteniz büyüdükçe varsayılan liste çok uzun olabilir veya ziyaretçilerinizin gezinmesini kolaylaştırmak isteyebilirsiniz.

WordPress arşivlerinin kenar çubuğunuzda görüntülenmesini özelleştirmenin bazı yollarına bakalım:

Kompakt Arşivler Oluşturma

Arşiv listeniz çok uzadıysa, gönderilerinizi çok daha az alan kullanarak görüntüleyen kompakt bir arşiv oluşturabilirsiniz.

WPBeginner ekibi tarafından geliştirilen ve sürdürülen Compact Archives eklentisini yüklemeniz ve etkinleştirmeniz gerekir. Daha fazla ayrıntı için, bir WordPress eklentisinin nasıl kurulacağına ilişkin adım adım kılavuzumuza bakın.

Etkinleştirmenin ardından, ‘WPBeginner’s Compact Archives’ bloğunu kullanarak kompakt arşivleri bir gönderiye, sayfaya veya widget’a ekleyebilirsiniz.

The Compact Archives Plugin

Kompakt arşiv listesi, biraz daha geniş olması sayesinde dikey alandan tasarruf sağlar. Bu, bir kenar çubuğundan ziyade bir altbilgi veya arşivler sayfasına daha iyi sığabileceği anlamına gelir.

Bununla birlikte, eklenti oldukça yapılandırılabilir ve her ay için yalnızca ilk harf veya bir sayı görüntüleyerek daha dar hale getirebilirsiniz. WordPress’te kompakt arşivlerin nasıl oluşturulacağına ilişkin kılavuzumuzda daha fazla bilgi edinebilirsiniz.

Arşivleri Daraltılabilir Anahatta Görüntüleme

Uzun arşiv listeleriyle başa çıkmanın bir başka yolu da blog yazılarını yayınladığınız yıl ve ayların daraltılabilir bir taslağını görüntülemektir.

Bunu yapmak için Collapsing Archives eklentisini yüklemeniz ve etkinleştirmeniz gerekir. Etkinleştirdikten sonra Görünüm ” Widget ‘lar sayfasını ziyaret etmeniz ve kenar çubuğunuza ‘Sıkıştırılmış Arşivler’ widget’ını eklemeniz gerekir.

The Collapsing Archives Plugin

Daralan Arşivler widget’ı, arşivinizi yıllara göre daraltmak için JavaScript kullanır. Kullanıcılarınız, aylık arşivleri görüntülemek üzere genişletmek için yıllara tıklayabilirler. Hatta aylık arşivleri daraltılabilir hale getirebilir ve kullanıcıların alttaki yazı başlıklarını görmelerini sağlayabilirsiniz.

WordPress’te görüntülenen arşiv aylarının sayısının nasıl sınırlandırılacağına ilişkin kılavuzumuzdaki Yöntem 1’e bakarak daha fazla bilgi edinebilirsiniz.

İşte demo web sitemizde nasıl göründüğü.

Preview of a Collapsing Archive

Görüntülenen Arşiv Aylarının Sayısını Sınırlama

Arşiv listenizin çok uzun olmasını engellemenin üçüncü bir yolu da görüntülenen ay sayısını örneğin son altı ayla sınırlamaktır.

Bunu yapmak için WordPress temanızın dosyalarına kod eklemeniz gerekir. Bunu daha önce yapmadıysanız, WordPress’te kod kopyalama ve yapıştırma hakkındaki kılavuzumuza bakın.

İlk adım, aşağıdaki kod parçacığını functions.php dosyanıza, siteye özel bir eklentiye veya bir kod parçacıkları eklentisi kullanarak eklemektir.

// Function to get archives list with limited months
function wpb_limit_archives() { 
 
$my_archives = wp_get_archives(array(
    'type'=>'monthly', 
    'limit'=>6,
    'echo'=>0
));
     
return $my_archives; 
 
} 
 
// Create a shortcode
add_shortcode('wpb_custom_archives', 'wpb_limit_archives'); 
 
// Enable shortcode execution in text widget
add_filter('widget_text', 'do_shortcode'); 

Görüntülenen ay sayısını 6. satırdaki sayıyı düzenleyerek değiştirebilirsiniz. Örneğin, sayıyı ’12’ olarak değiştirirseniz, 12 aylık arşivler görüntülenecektir.

Şimdi Görünüm ” Widget ‘lar sayfasına gidebilir ve kenar çubuğunuza bir ‘Özel HTML’ widget’ı ekleyebilirsiniz. Bundan sonra, aşağıdaki kodu widget kutusuna yapıştırmalısınız:

<ul>
[wpb_custom_archives]
</ul>
Adding Shortcode to a Custom HTML Widget

‘Güncelle’ düğmesine tıkladığınızda, kenar çubuğunuzda sadece altı aylık arşivler görüntülenecektir.

Daha fazla ayrıntı için WordPress’te görüntülenen arşiv aylarının sayısını sınırlama kılavuzumuzdaki Yöntem 3’e bakın.

İlan Arşivleri Günlük, Haftalık, Aylık veya Yıllık

Arşivlerinizin nasıl listeleneceği konusunda daha fazla kontrol istiyorsanız, Yıllık Arşiv eklentisi size yardımcı olacaktır. Arşivlerinizi günlük, haftalık, aylık, yıllık veya alfabetik olarak listelemenizi sağlar ve listeleri on yıla göre gruplandırabilir.

Yıllık Arşiv eklentisini yükleyip etkinleştirerek başlayın. Bundan sonra Görünüm ” Widget ‘lar sayfasına gidebilir ve Yıllık Arşiv widget’ını kenar çubuğunuza sürükleyebilirsiniz.

The Annual Archive Plugin

Widget’a bir başlık verebilir ve ardından günlerin, haftaların, ayların, yılların, on yılların veya gönderilerin bir listesini görüntüleyip görüntülemeyeceğinizi seçebilirsiniz. Görüntülenen arşiv sayısını sınırlamak, bir sıralama seçeneği belirlemek ve ek metin eklemek için diğer seçeneklere ilerleyebilirsiniz.

Ayarlar ” Yıllık Arşiv bölümüne giderseniz, özel CSS kullanarak arşiv listesini daha da özelleştirebilirsiniz.

Yıllara Göre Düzenlenmiş Aylık Arşivler Görüntüleniyor

Bir keresinde, kenar çubuğunda yıllara göre düzenlenmiş aylık arşivlere ihtiyaç duyan bir müşterinin site tasarımı üzerinde çalışıyorduk. Bunu kodlamak zordu çünkü bu müşteri yılı yalnızca solda bir kez göstermek istiyordu.

Displaying Monthly Archives Arranged by Year

Andrew Appleton tarafından yazılan bazı kodları değiştirmeyi başardık. Andrew’un kodunda arşivler için bir sınır parametresi yoktu, bu nedenle liste tüm arşiv aylarını gösteriyordu. Herhangi bir zamanda yalnızca 18 ayı görüntülememizi sağlayan bir sınır parametresi ekledik.

Yapmanız gereken, aşağıdaki kodu temanızın sidebar.php dosyasına veya özel WordPress arşivlerini görüntülemek istediğiniz başka bir dosyaya yapıştırmaktır:

<?php
global $wpdb;
$limit = 0;
$year_prev = null;
$months = $wpdb->get_results("SELECT DISTINCT MONTH( post_date ) AS month ,  YEAR( post_date ) AS year, COUNT( id ) as post_count FROM $wpdb->posts WHERE post_status = 'publish' and post_date <= now( ) and post_type = 'post' GROUP BY month , year ORDER BY post_date DESC");
foreach($months as $month) :
    $year_current = $month->year;
    if ($year_current != $year_prev){
        if ($year_prev != null){?>
         
        <?php } ?>
     
    <li class="archive-year"><a href="<?php bloginfo('url') ?>/<?php echo $month->year; ?>/"><?php echo $month->year; ?></a></li>
     
    <?php } ?>
    <li><a href="<?php bloginfo('url') ?>/<?php echo $month->year; ?>/<?php echo date("m", mktime(0, 0, 0, $month->month, 1, $month->year)) ?>"><span class="archive-month"><?php echo date_i18n("F", mktime(0, 0, 0, $month->month, 1, $month->year)) ?></span></a></li>
<?php $year_prev = $year_current;
 
if(++$limit >= 18) { break; }
 
endforeach; ?>

Görüntülenen ay sayısını değiştirmek istiyorsanız, mevcut $limit değerinin 18 olarak ayarlandığı 19. satırı düzenlemeniz gerekir.

Yukarıdaki kodun 12-16. satırları arasında herhangi bir yere bu kodu ekleyerek her bir aydaki gönderi sayısını da gösterebilirsiniz:

<?php echo $month->post_count; ?>

Arşiv listesini web sitenizde doğru şekilde görüntülemek için özel CSS kullanmanız gerekecektir. Müşterimizin web sitesinde kullandığımız CSS şuna benziyordu:

.widget-archive{padding: 0 0 40px 0; float: left; width: 235px;}
.widget-archive ul {margin: 0;}
.widget-archive li {margin: 0; padding: 0;}
.widget-archive li a{ border-left: 1px solid #d6d7d7; padding: 5px 0 3px 10px; margin: 0 0 0 55px; display: block;}
li.archive-year{float: left; font-family: Helvetica, Arial, san-serif; padding: 5px 0 3px 10px; color:#ed1a1c;}
li.archive-year a{color:#ed1a1c; margin: 0; border: 0px; padding: 0;}

Umarız bu eğitim, WordPress arşivlerinin kenar çubuğunuzdaki görüntüsünü nasıl özelleştireceğinizi öğrenmenize yardımcı olmuştur. Ayrıca WordPress’e Google Analytics’i nasıl yükleyeceğinizi öğrenmek veya WordPress ile blog yazarak para kazanmanın kanıtlanmış yolları listemize göz atmak isteyebilirsiniz.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Açıklama: İçeriğimiz okuyucu desteklidir. Bu, bazı bağlantılarımıza tıklarsanız komisyon kazanabileceğimiz anlamına gelir. WPBeginner'ın nasıl finanse edildiğini, neden önemli olduğunu ve nasıl destek olabileceğinizi görün. İşte editoryal sürecimiz.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

Ultimate WordPress Araç Kiti

Araç setimize ÜCRETSİZ erişim sağlayın - her profesyonelin sahip olması gereken WordPress ile ilgili ürün ve kaynaklardan oluşan bir koleksiyon!

Reader Interactions

45 yorumBir Cevap Bırakın

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. AD says

    Is there a way, or a widget of some kind, under the Archives sidebar to have blog posts by title displayed under under the correlating month; versus just the month alone being present that clicks into a new page displaying all posts for that month in their entirety?

    I’m sorry if this has already been answered in the comments. I haven’t had a chance to read them.

    Thank you for any help or direction you can provide my question!

  3. Thomas says

    Hello WPBEGINNER,

    I hope you still have a look at this older post. First many thanks for this great tutorial and code.
    I’ve managed to get

    Year
    January (2)
    February (5)

    But didn’t manage to count the posts per year. How can I do this, so that the year entry shows a number for all post for a year
    year (28) …

    Many thanks for your help!

    Best regards,
    Thomas

  4. Erik says

    Thanks so much for this code! :) it is helping me a lot.

    Any chance to extend this to a specific category? by category id?

    • James says

      It does work at all !!!

      result has nothing to do with example.

      Strange that some guys felt it useful and great.

      What is the issue ?

  5. Xavier Bonet says

    Hi! First thing’s first! Great code! Works perfectly! Thanks!
    I was asking myself if there would be a way to edit the code in order to allow for the, say, 18-month span to move up or down according to what one is viewing? As is, you can only access the last 18 months. But perhaps there would be a way to do this so that when one opens up, for example, month 18 of the list, and the new page is opened, the archive list output by the code above sets month 18 as the middle of a new array showing, say, 9 months before and 7 after (or vice-versa).
    Perhaps my explanation is not too clear. I got the idea when viewing this website here: http://marthabeck.com/. If you scroll down to the menu at the very bottom you will see there are several years available but only those months for the present year are displayed. When one opens up a new year, the months for that year are then displayed. Of course, this is probably another code entirely, but at least it works as a visual example of sort of what I’m talking about.

    • JP Lew says

      I use a calendar, but in addition to that modified the code to output daily archives too, it worked great. Here’s the query:

      $days = $wpdb->get_results(“SELECT DISTINCT DAY( post_date ) AS day , MONTH( post_date ) AS month , YEAR( post_date ) AS year, COUNT( id ) as post_count FROM $wpdb->posts WHERE post_status = ‘publish’ and post_date <= now( ) and post_type = 'lecture' GROUP BY day , month , year ORDER BY post_date ASC");

      <a href="/year; ?>/month, 1, $day->year)) ?>/month, $day->day, $day->year)) ?>”>month, $day->day, $day->year)) . “, ” . date_i18n(“F”, mktime(0, 0, 0, $day->month, 1, $day->year)) . ” ” . date(“j”, mktime(0, 0, 0, $day->month, $day->day, $day->year)) . “, ” . $queried_year ?>post_count . “)”; ?>
      //outputs: Thursday, August 22, 2013 (12)

      Thanks for the post by the way, it was exactly what I was looking for. The performance is surprisingly good too.

      • JP Lew says

        ok, your comment system stripped out all my `php` tags essentially rendering that code useless. Anyways, it’s possible and easy, you’ll figure it out. :)

  6. Roelof says

    Hello,

    I like this idea. Can it also be adapted so only articles in a specific category will be in the archives and all the other categories not.

    Roelof Wobben

  7. Carla says

    I’ve looked everywhere for a tutorial on how to customize my archives page. I was able to get my page to produce a list of post titles and post dates, which is a great start. And now I need to figure out how to group them by month, so the page looks like this:

    2013

    May

    This is a post title
    May 28, 2013

    And another post
    May 20, 2013

    I’m not really sure how to do this. Would you have any suggestions? I’ve noticed in the WordPress forum and elsewhere that lots of people want their archives to look like this, but they (like me) haven’t received any help.

    Thank you!

  8. Núria says

    Thanks for this code snipped, it has been very usefull. I only want to add a little bit change that will make the output of the month’ string in the locale language.
    On line 16 you can replace the date() function to date_i18n() function

    – echo date(“F”, mktime(0, 0, 0, $month->month, 1, $month->year))
    – echo date_i18n(“F”, mktime(0, 0, 0, $month->month, 1, $month->year))

    Thus, the function will return for the march month the string “March” in English, “Marzo” in spanish or “Març” in catalan, only to put some examples, based on the language of the site.

  9. Matt says

    The theme I’m using has a widget for the sidbars. The php file is written in shortcode. How would I convert this to a shortcode to put into the file? Thanks.

  10. Ryan says

    Hey,

    I came across this, just what i was after. But it has a small problem, i have the last two months of posts october and november show in sidebar, i just added a new one in december and its not showing december in the archive list.

    Weird why its not showing the current month

  11. thao_ says

    Is it possible to show the total years’ post_count, as well as the post_count for each month? So you’d still have each months’ post count next to each month, but also the total for the year next to the year. Using your archive image as the example, you’d have 2010 (20) and then the months as the currently display.

  12. craig coffman says

    I think I got it sorted. I moved the “break;” up into the code before it spits out the monthly … . I figured it out after looking at Appleton’s site. His code is slightly different, as you noted. I find it interesting how people can change a single bit of code and the effect is wildly different from such a small edit. To borrow from WP, “Code is Poetry” :)

    I did make one alteration which I wanted to bring to your attention. The above code did not seem to spit out the most current month. That is, my August month of this year would not appear (since we are now in August) but July showed just fine. I altered the SQL statement and now it does appear. I am not sure you want the current month, but if this is an archive perhaps even the current month is archived.

    Here is my change:

    post_date YEAR(CURDATE())

    That seems to pull the month we are currently in. I am no SQL master, so perhaps there is a reason not to do this or even a better way. However it is working for me.

    Thanks for your time on this tutorial. It definitely saved me from further bashing my head against a wall attempting to manipulate wp_get_archives().

    • craig coffman says

      hmm… seems like some code was stripped out. There should be the Greater Than symbol in there, between “post_date” and “YEAR(CURDATE())”. Let me try again and I hope it takes.

      post_date > YEAR(CURDATE())

      Sorry for the additional post, but a ‘tweak’ doesn’t change anything if the proper code does not display :)

        • craig coffman says

          Ryan –

          Weird. I posted a response on the Float Left site but it does not seem to be there. Here is the file for you to download, showing where the code is located:

          http://www.octoberland.com/fileChute/displayCurrentMonth.zip

          I put the code in the index.php file from my template. It is there because the client wanted it to be on every page. It only grabs the current year’s months. That is, if you went back to 2011 the months displayed would still be 2012.

          I added my code into the ‘WHERE’ line of the MySQL, replacing the code Andy had there.

          Also, I have the standard WP archive function in there as well because my client wanted to display a yearly archive as well. This is not necessary for displaying the current month.

          I hope this helps.

          – Craig

      • craig coffman says

        Ryan –

        Happy it worked for you. It took me several hours (I am not a MySQL developer) to figure that out. Now that it is helped someone else, it was worth the effort :)

        – Craig

  13. zuzanka says

    Hi, I’m using only widget, not extra plugin for archive. I limited number of months, e.g. 2 but I’m expecting to have 2 months and than the rest under “…” or “archive”. I can not find the way how to show the rest. Is here someone who knows this problem? Thanks a lot.

  14. sgclark says

    @wpbeginner The unused months are wrapped in their own unique CSS class, so you can just do a CSS “display:none” for unused months. Then when a post appears in the month, it switches to a different class (via PHP)

  15. wpbeginner says

    @sgclark That plugin sounds good… Wonder how that would work if we don’t want to show the unused months at all. But nonetheless haven’t tried it yet because it is not hosted in the repository…

Bir Cevap Bırakın

Yorum bırakmayı seçtiğiniz için teşekkür ederiz. Lütfen tüm yorumların yorum poli̇ti̇kasi uyarınca denetlendiğini ve e-posta adresinizin yayımlanmayacağını unutmayın. Ad alanında anahtar kelime KULLANMAYIN. Kişisel ve anlamlı bir sohbet edelim.