$cur_mm =
current_time( 'm'
);
$cur_aa =
current_time( 'Y'
);
$cur_hh =
current_time( 'H'
);
$cur_mn =
current_time( 'i'
);
$month = '<label><span class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__( 'Month'
) .
'</span><select class="form-required" ' .
( $multi ? '' : 'id="mm" '
) . 'name="mm"' .
$tab_index_attribute . ">\n";
for ( $i = 1;
$i < 13;
$i =
$i + 1
) { $monthnum =
zeroise( $i, 2
);
$monthtext =
$wp_locale->
get_month_abbrev( $wp_locale->
get_month( $i ) );
$month .= "\t\t\t" . '<option value="' .
$monthnum . '" data-text="' .
$monthtext . '" ' .
selected( $monthnum,
$mm, false
) . '>';
/* translators: 1: Month number (01, 02, etc.), 2: Month abbreviation. */
$month .=
sprintf( __( '%1$s-%2$s'
),
$monthnum,
$monthtext ) . "</option>\n";
} $month .= '</select></label>';
$day = '<label><span class="screen-reader-text">' .
/* translators: Hidden accessibility text. */
__( 'Day'
) .
'</span><input type="text" ' .
( $multi ? '' : 'id="jj" '
) . 'name="jj" value="' .
$jj . '" size="2" maxlength="2"' .
$tab_index_attribute . ' autocomplete="off" class="form-required" /></label>';
$year = '<label><span class="screen-reader-text">' .