Kontakt

13 + 6 =

Adressen:

Sternenfreunde Wurmannsquick e.V.
Vorleiten 1a
84329 Wurmannsquick

Email:

info@sternwarte-wurmannsquick.de

 

function shortcode_next_first_friday() {
// Heutiges Datum
$today = strtotime(‚today‘);

// Ersten Freitag des aktuellen Monats
$first_friday_this_month = strtotime(‚first friday of this month‘, $today);

// Prüfen, ob das heutige Datum vor oder am ersten Freitag liegt
if ($today <= $first_friday_this_month) { $next_friday = $first_friday_this_month; } else { $next_month = strtotime('first day of next month', $today); $next_friday = strtotime('first friday of ' . date('F Y', $next_month)); } $date = date('d.m.Y', $next_friday); return "Nächster öffentlicher Abend:
Freitag, $date„;
}
add_shortcode(’naechster_abend‘, ’shortcode_next_first_friday‘);