Viewing 1 replies (of 1 total)
  • Plugin Author Evan Herman

    (@eherman24)

    Hi,

    Yes you can easily adjust the format of the date using the provided timeline_express_custom_date_format filter. [see ‘other notes‘ section for usage]

    Provided Example:

    function custom_te_date_format( $date_format ) {
        $date_format = "M d , Y"; // will print the date as Nov 19 , 2014
        return $date_format;
    }
    add_filter( 'timeline_express_custom_date_format' , 'custom_te_date_format' , 10 );

    Thanks,
    Evan

Viewing 1 replies (of 1 total)

The topic ‘Date format’ is closed to new replies.