Changeset 59691
- Timestamp:
- 01/22/2025 11:29:25 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r59606 r59691 2518 2518 2519 2519 /** 2520 * Displays or retrieves the date the current post was written (once per date)2520 * Displays or retrieves the date of the post (once per date). 2521 2521 * 2522 2522 * Will only output the date if the current post's date is different from the … … 2551 2551 2552 2552 /** 2553 * Filters the date a post was publishedfor display.2553 * Filters the date of the post, for display. 2554 2554 * 2555 2555 * @since 0.71 … … 2570 2570 2571 2571 /** 2572 * Retrieves the date o n which the post was written.2572 * Retrieves the date of the post. 2573 2573 * 2574 2574 * Unlike the_date() this function will always return the date. … … 2593 2593 2594 2594 /** 2595 * Filters the date a post was published.2595 * Filters the date of the post. 2596 2596 * 2597 2597 * @since 3.0.0 … … 2619 2619 2620 2620 /** 2621 * Filters the date a post was last modified for display.2621 * Filters the date a post was last modified, for display. 2622 2622 * 2623 2623 * @since 2.1.0 … … 2673 2673 2674 2674 /** 2675 * Displays the time at which the post was written.2675 * Displays the date of the post. 2676 2676 * 2677 2677 * @since 0.71 … … 2683 2683 function the_time( $format = '' ) { 2684 2684 /** 2685 * Filters the time a post was writtenfor display.2685 * Filters the date of the post, for display. 2686 2686 * 2687 2687 * @since 0.71 … … 2695 2695 2696 2696 /** 2697 * Retrieves the time at which the post was written.2697 * Retrieves the date of the post. 2698 2698 * 2699 2699 * @since 1.5.0 … … 2718 2718 2719 2719 /** 2720 * Filters the time a post was written.2720 * Filters the date of the post. 2721 2721 * 2722 2722 * @since 1.5.0 … … 2731 2731 2732 2732 /** 2733 * Retrieves the time at which the post was written.2733 * Retrieves the localized date of the post. 2734 2734 * 2735 2735 * @since 2.0.0 … … 2775 2775 2776 2776 /** 2777 * Filters the localized time a post was written.2777 * Filters the localized date of the post. 2778 2778 * 2779 2779 * @since 2.6.0 2780 2780 * 2781 2781 * @param string|int $time Formatted date string or Unix timestamp if `$format` is 'U' or 'G'. 2782 * @param string $format Format to use for retrieving the time the post was written.2782 * @param string $format Format to use for retrieving the date of the post. 2783 2783 * Accepts 'G', 'U', or PHP date format. 2784 2784 * @param bool $gmt Whether to retrieve the GMT time. … … 2977 2977 2978 2978 /** 2979 * Displays the weekday on which the post was written.2979 * Displays the weekday for the post. 2980 2980 * 2981 2981 * @since 0.71 … … 2995 2995 2996 2996 /** 2997 * Filters the weekday o n which the post was written, for display.2997 * Filters the weekday of the post, for display. 2998 2998 * 2999 2999 * @since 0.71 … … 3005 3005 3006 3006 /** 3007 * Displays the weekday on which the post was written.3007 * Displays the localized weekday date for the post 3008 3008 * 3009 3009 * Will only output the weekday if the current post's weekday is different from … … 3038 3038 3039 3039 /** 3040 * Filters the localized date on which the post was written, for display.3040 * Filters the localized weekday date of the post, for display. 3041 3041 * 3042 3042 * @since 0.71 … … 4352 4352 function the_search_query() { 4353 4353 /** 4354 * Filters the contents of the search query variable for display.4354 * Filters the contents of the search query variable, for display. 4355 4355 * 4356 4356 * @since 2.3.0 … … 4985 4985 function the_generator( $type ) { 4986 4986 /** 4987 * Filters the output of the XHTML generator tag for display.4987 * Filters the output of the XHTML generator tag, for display. 4988 4988 * 4989 4989 * @since 2.5.0
Note: See TracChangeset
for help on using the changeset viewer.