Так у вас же в ошибке написано все ясно. Невозможно найти функцию
dovzhenko_underscore_posted_on()
Вызывается она тут
/wp-content/themes/Dovzhenko_under/template-parts/content.php:25
Нужно открыть этот файл и убрать вызов несуществующей функции. Или исправить.
Исправить можно в файле /wp-content/themes/Dovzhenko_under/inc/template-tags.php Строка 14, что то типа такого:
if ( ! function_exists( 'underscore_posted_on' ) ) :
/**
* Prints HTML with meta information for the current post-date/time.
*/
function underscore_posted_on() {
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( DATE_W3C ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( DATE_W3C ) ),
esc_html( get_the_modified_date() )
);
$posted_on = sprintf(
/* translators: %s: post date. */
esc_html_x( 'Posted on %s', 'post date', 'vchuytheme' ),
'<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'
);
echo '<span class="posted-on">' . $posted_on . '</span>'; // WPCS: XSS OK.
}
endif;