• Resolved kuro07

    (@kuro07)


    ウェイジェット埋め込みで、先月翌日分のカレンダーを表示しています。
    xo_event_calendar_month_caption フィルターフックを使用し月を英語表示にしたいと思っています。

    月が英語にはなったのですが、月がずれてしまい3月が「April」になってしまいます。
    vr.2.1.6 です

    • This topic was modified 4 years ago by kuro07.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    下記コードではどうでしょうか?

    function my_event_calendar_month_caption( $caption, $args, $month_index ) {
    	$months = array( 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' );
    	$caption = sprintf( '%1$s %2$s', $months[$args['month'] - 1], $args['year'] );
    	return $caption;
    }
    add_filter( 'xo_event_calendar_month_caption', 'my_event_calendar_month_caption', 10, 3 ); 
    Thread Starter kuro07

    (@kuro07)

    返信ありがとうございます。
    早速対応し解決致しました!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘xo_event_calendar_month_caption フィルターフック’ is closed to new replies.