the_date

the_date

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('the_date') is found 1 times:

  • /wp-includes/general-template.php line 2562
    2558
    2559
    2560
    2561
    2562
    2563
    2564
    2565
    2566
    2567
    2568
    * @param string $format   PHP date format.
     * @param string $before   HTML output before the date.
     * @param string $after    HTML output after the date.
     */
    $the_date = apply_filters( 'the_date', $the_date, $format, $before, $after );
     
    if ( $display ) {
        echo $the_date;
    } else {
        return $the_date;
    }