vs_event: change summary
Some checks are pending
Deploy to https://wordpress-test.event-federation.eu/ / deploy (push) Waiting to run

This commit is contained in:
André Menrath 2024-01-03 19:22:33 +01:00
parent 4e07371023
commit a166cf94bd

View file

@ -213,7 +213,7 @@ class VS_Event extends Post {
$start_time = get_post_meta( $this->object->ID, 'event-start-date', true );
$datetime_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
$start_time_string = wp_date( $datetime_format, $start_time );
$summary = "📍 {$address}\n 📅 {$start_time_string}\n\n {$excerpt}";
$summary = "📍 {$address}\n📅 {$start_time_string}\n\n{$excerpt}";
return $summary;
}