Add the following to functions.php of the child theme
// Remove hentry microdata class to prevent errors in Google Search Console about missing entry-title, author and update
function agentwp_remove_hentry_class( $classes ) {
$classes = array_diff( $classes, array( 'hentry' ) );
return $classes;
}
add_filter( 'post_class', 'agentwp_remove_hentry_class' );Code language: PHP (php)