Hi @sarkarialerteam,
We are sorry for the delay.
Actually, we don’t provide custom code as it is beyond our support and usually will let the community takes the part.
However, I would like to consider this as a one-time exception. Please try the following
function your_prefix_post_date( $output ) {
$format = apply_filters( 'astra_post_date_format', '' );
$modified_date = esc_html( get_the_modified_date( $format ) );
$modified_on = sprintf(
esc_html( '%s' ),
$modified_date
);
$updated_output = '';
$separator = ' /';
$separator = apply_filters( 'astra_post_meta_separator', $separator );
$published_string = __('Published : ' , 'astra');
$updated_string = __('' . $separator . ' Updated : ' , 'astra' );
$updated_output .= '';
$updated_output .= ' ' . $modified_on . '';
$updated_output .= '';
$modified_output = $published_string . $output . $updated_string . $updated_output;
return $modified_output;
}
add_filter( 'astra_post_date', 'your_prefix_post_date' );
I hope it will help.
Kind regards,
Herman ??