0

我一直在尝试连续 3 天,但没有运气让档案小部件以包含在 locale.php 中的缩写形式显示月份到目前为止,我只知道月份名称通常来源于这段代码 -模板.php:

    if ( $arcresults ) {
        $afterafter = $after;
        foreach ( (array) $arcresults as $arcresult ) {
            $url = get_month_link( $arcresult->year, $arcresult->month );
            /* translators: 1: month name, 2: 4-digit year */
            $text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);
            if ( $show_post_count )
                $after = ' ('.$arcresult->posts.')' . $afterafter;
            $output .= get_archives_link($url, $text, $format, $before, $after);
        }

我确实在同一个文件中找到了日历小部件源自缩写月份的位置。但是由于我的知识有限,我无法将其改编为档案:

if ( $previous ) {
    $calendar_output .= "\n\t\t".'<td colspan="3" id="prev"><a href="' . get_month_link($previous->year, $previous->month) . '" title="' . esc_attr( sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($previous->month), date('Y', mktime(0, 0 , 0, $previous->month, 1, $previous->year)))) . '">&laquo; ' . $wp_locale->get_month_abbrev($wp_locale->get_month($previous->month)) . '</a></td>';
} else {
    $calendar_output .= "\n\t\t".'<td colspan="3" id="prev" class="pad">&nbsp;</td>';
}

谁能给我一些提示或帮助我使用 get_month_abbrev 函数在档案中工作?

提前致谢!

4

1 回答 1

0

好的。所以一个朋友帮我破解了这个。

进入 general-template.php 和

代替:

            $text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);

和:

            $text = sprintf(__('%1$s %2$d'), $wp_locale->get_month_abbrev($wp_locale->get_month($arcresult->month)), $arcresult->year);

谢谢大家..希望它可以帮助更多的人。

(在 Wordpress 3.5.1 中,文件路径是:'wordpress\wp-includes\general-template.php',这个字符串在第 937 行)

于 2011-10-12T23:35:36.720 回答