@@ 2012-2016 (lines=5) @@ | ||
2009 | <tfoot> |
|
2010 | <tr>'; |
|
2011 | ||
2012 | if ( $previous ) { |
|
2013 | $calendar_output .= "\n\t\t".'<td colspan="3" id="prev"><a href="' . get_month_link( $previous->year, $previous->month ) . '">« ' . |
|
2014 | $wp_locale->get_month_abbrev( $wp_locale->get_month( $previous->month ) ) . |
|
2015 | '</a></td>'; |
|
2016 | } else { |
|
2017 | $calendar_output .= "\n\t\t".'<td colspan="3" id="prev" class="pad"> </td>'; |
|
2018 | } |
|
2019 | ||
@@ 2022-2026 (lines=5) @@ | ||
2019 | ||
2020 | $calendar_output .= "\n\t\t".'<td class="pad"> </td>'; |
|
2021 | ||
2022 | if ( $next ) { |
|
2023 | $calendar_output .= "\n\t\t".'<td colspan="3" id="next"><a href="' . get_month_link( $next->year, $next->month ) . '">' . |
|
2024 | $wp_locale->get_month_abbrev( $wp_locale->get_month( $next->month ) ) . |
|
2025 | ' »</a></td>'; |
|
2026 | } else { |
|
2027 | $calendar_output .= "\n\t\t".'<td colspan="3" id="next" class="pad"> </td>'; |
|
2028 | } |
|
2029 |