• Resolved Dreagnout

    (@dreagnout)


    Hi,

    In the user video page (page when all the videos are displayed), I want to display the absolute date (D-M-Y) instead the relative date (posted 4 days ago). This is the code:

    if ( $attributes[‘show_date’] ) {
    $meta[] = sprintf( __( ‘%s ago’, ‘all-in-one-video-gallery’ ), human_time_diff( get_the_time( ‘U’ ), current_time( ‘timestamp’ ) ) );
    }

    How i can do it?

    thanks.

Viewing 1 replies (of 1 total)
  • Plugin Author plugins360

    (@plugins360)

    Kindly try using the following code,

    if ( $attributes['show_date'] ) {
    $meta[] = get_the_date( 'd-m-Y' );
    }

    Hope, this helped you!

Viewing 1 replies (of 1 total)
  • The topic ‘change relative date to absolute date’ is closed to new replies.