Forums

[resolved] Count months in archive (3 posts)

  1. Fredriks
    Member
    Posted 1 year ago #

    Hello,

    I wonder how I can count how many months there is where there are posts in?

    Example
    august 2010
    november 2010

    Above example should return 2.

    Is there any code or function I can use to get this?

    Thanks in advantage
    Greetings Fredrik

  2. vtxyzzy
    Member
    Posted 1 year ago #

    This should do it:

    $list = wp_get_archives(array('type' => 'monthly','echo' => false));
    $months = explode('<li>',$list);
    array_shift($months);  // first entry is empty
    echo "<p>Count:" . sizeof($months) . '</p>';
  3. Fredriks
    Member
    Posted 1 year ago #

    That works perfect vtxyzzy!

    Thanks a lot!

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags