WordPress:显示按年份分组的归档链接

Ric*_*ard 3 wordpress archive

我目前正在使用wp_get_archives('type=monthly')侧边栏中显示存档链接.这是输出:

<ul>
    <li><a href='http://example.com/2011/08/'>August 2011</a></li>
    <li><a href='http://recently.se/2011/07/'>July 2011</a></li>
    <li><a href='http://recently.se/2010/12/'>December 2010</a></li>
</ul>
Run Code Online (Sandbox Code Playgroud)

是否有可能将月份分组?像这样的东西:

<ul>
    <h2>2011</h2>
    <li><a href='http://example.com/2011/08/'>August 2011</a></li>
    <li><a href='http://recently.se/2011/07/'>July 2011</a></li>

    <h2>2010</h2>
    <li><a href='http://recently.se/2010/12/'>December 2010</a></li>
</ul>
Run Code Online (Sandbox Code Playgroud)

小智 5

这就是我实现它的方式,虽然我确信有更好的方法.我将这些函数添加到我的主题的functions.php文件中:

function twentyeleven_get_archives_callback($item, $index, $currYear) {
    global $wp_locale;

    if ( $item['year'] == $currYear ) {
        $url = get_month_link( $item['year'], $item['month'] );
        // translators: 1: month name, 2: 4-digit year
        $text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($item['month']), $item['year']);
        echo get_archives_link($url, $text);
    }
}

function twentyeleven_get_archives() {
    global $wpdb;

    $query = "SELECT YEAR(post_date) AS `year` FROM $wpdb->posts WHERE `post_type` = 'post' AND `post_status` = 'publish' GROUP BY `year` ORDER BY `year` DESC";
    $arcresults = $wpdb->get_results($query);
    $years = array();

    if ($arcresults) {
        foreach ( (array)$arcresults as $arcresult ) {
            array_push($years, $arcresult->year);
        }
    }

    $query = "SELECT YEAR(post_date) as `year`, MONTH(post_date) as `month` FROM $wpdb->posts WHERE `post_type` = 'post' AND `post_status` = 'publish' GROUP BY `year`, `month` ORDER BY `year` DESC, `month` ASC";
    $arcresults = $wpdb->get_results($query, ARRAY_A);
    $months = array();

    if ( $arcresults ) {
        foreach ($years as $year) {
                    //My Display
            //echo "\t<li>\n\t\t<a href=\"#\">$year</a>\n\t\t<ul>\n";
            //array_walk($arcresults, "twentyeleven_get_archives_callback", $year);
            //echo "\t\t</ul>\n\t</li>\n";

                    //Your Display
            echo "\t<h2>$year</h2>\n\t<ul>\n";
            array_walk($arcresults, "twentyeleven_get_archives_callback", $year);
            echo "\t</ul>\n";
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

您可以在主题中调用此函数而不是wp_get_archives(),如下所示:

<ul>
<?php twentyeleven_get_archives(); ?>
</ul>
Run Code Online (Sandbox Code Playgroud)

函数名称可以是你想要的任何名称,虽然好的做法是在它们前面添加你的主题名称(即twentyeleven_)

我在wp-includes/general-template.php中引用了wp_get_archives()get_archives_link().