$tn_months_ago ) { // Display the time ago format before 12 months echo esc_html( human_time_diff( $tn_post_date, $tn_current_time ) ) . ' ' . esc_html__( 'ago', 'authentic-blog' ); } else { // Display the normal publish date after 11 months echo esc_html( get_the_date( 'd F Y', $post_id ) ); } } elseif ( $get_publish_date_format === 'normal_date' ) { // Display the normal publish date echo esc_html( get_the_date( 'd F Y', $post_id ) ); } else { // Display the time ago format echo esc_html( human_time_diff( $tn_post_date, $tn_current_time ) ) . ' ' . esc_html__( 'ago', 'authentic-blog' ); } } }