To change the modified date format output on single blog post header styles meta (all styles except for the Default style), you can use the ocean_get_post_modified_date_format filter hook.

add_filter( 'ocean_get_post_modified_date_format', 'my_get_post_modified_date_format' );
function my_get_post_modified_date_format() {

    $output = 'Y/m/d';

    return $output;
}

Adjust the $output value accordingly.

Leave a Reply

Get in Touch

Please fill out the form below and we will get back to you ASAP

  • This field is for validation purposes and should be left unchanged.