Код: Выделить всё
add_filter('the_content', function($content) {
if (is_singular('mec-events')) {
$event_id = get_the_ID();
$start_date = get_post_meta($event_id, 'mec_start_date', true);
if ($start_date === '2099-12-31') {
// Replace any date pattern with "TBD"
$content = preg_replace('/\d{1,2}\s+\w+\s+\d{4}/', 'TBD', $content);
$content = str_replace('2099', 'TBD', $content); // fallback
}
}
return $content;
});
Подробнее здесь: https://stackoverflow.com/questions/797 ... ar-aka-mec