gravityflow_date_format_entry_detail

The gravityflow_date_format_entry_detail filter is used to adjust the date format which status information is displayed in the info box on the entry detail page.

Parameters

$date_format String - Defaults to Y/m/d

Example

The following snippet will change the date format from 2018/08/08 to Aug, 08, 2018.

add_filter( 'gravityflow_date_format_entry_detail', 'sh_entry_detail_date_format', 10, 1 );
function sh_entry_detail_date_format( $date_format ) {
    $date_format = 'M d, Y';
    return $date_format;
}


Placement

This code should be placed in the functions.php file of your active theme.