Changeset 59953
- Timestamp:
- 03/08/2025 12:49:25 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r59952 r59953 2311 2311 * 2312 2312 * `display` is excluded from the cache key as the cache contains the same 2313 * HTML regardless of this function s need to echo or return the output.2314 * 2315 * The global values contain data generated by the URL query string variables.2313 * HTML regardless of this function's need to echo or return the output. 2314 * 2315 * The global values contain data generated by the URL query string variables. 2316 2316 */ 2317 2317 $cache_args = $args; … … 2498 2498 $calendar_output .= "\n\t</tr>\n\t<tr>\n\t\t"; 2499 2499 } 2500 2500 2501 $newrow = false; 2501 2502 2502 if ( (int) current_time( 'j' ) === $day && 2503 (int) current_time( 'm' ) === $thismonth && 2504 (int) current_time( 'Y' ) === $thisyear ) { 2503 if ( (int) current_time( 'j' ) === $day 2504 && (int) current_time( 'm' ) === $thismonth 2505 && (int) current_time( 'Y' ) === $thisyear 2506 ) { 2505 2507 $calendar_output .= '<td id="today">'; 2506 2508 } else {
Note: See TracChangeset
for help on using the changeset viewer.