web-dev-qa-db-ja.com

メタボックス日付の月番号から単語へ

私は日付付きのカスタムメタボックスを使用します(日、月、年)。問題は、日付番号を日付Wordに変換しようとしたときです。たとえば、10は10月です。私はこのコードを使います:

function eventposttype_get_the_month_abbr($month) {
global $wp_locale;
for ( $i = 1; $i < 13; $i = $i +1 ) {
            if ( $i == $month )
                $monthabbr = $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) );
            }
return $monthabbr;
}

しかし今、月は3つの記号だけで表示されます - 10月。私は完全な月名になりたいです。定義する方法はありますか?

前もって感謝します!

4
Dido Kotsev

使用しているコードは、月の省略形(Oct)用です。これを使うべきです:

function eventposttype_get_the_month($month) {
global $wp_locale;
for ( $i = 1; $i < 13; $i = $i +1 ) {
            if ( $i == $month )
                $month =$wp_locale->get_month( $i ) ;
            }
return $monthabbr;
}
4
Manny Fleurmond