admin管理员组

文章数量:1130349

How can I show archive's post count in an customized html output for archive?

//Change Archive List HTML
function change_archives_output($link_html, $url, $text, $format, $before, $after) {
    if ('with_plus' == $format) {
        $link_html = "<li><a href='$url'>"
                   . "<span class='month'>$text</span><span class='number'>$show_post_count?</span>"
                   . '</a></li>';
    }
    return $link_html;
}

add_filter ('get_archives_link', 'change_archives_output', 10, 6);

How can I show archive's post count in an customized html output for archive?

//Change Archive List HTML
function change_archives_output($link_html, $url, $text, $format, $before, $after) {
    if ('with_plus' == $format) {
        $link_html = "<li><a href='$url'>"
                   . "<span class='month'>$text</span><span class='number'>$show_post_count?</span>"
                   . '</a></li>';
    }
    return $link_html;
}

add_filter ('get_archives_link', 'change_archives_output', 10, 6);

本文标签: customizationHow Can I add showpostcount in getarchiveslink