I have updated your given code on the website.
I have followed the guide you provided.
Hi there,
the only ARIA warning I see is this: [aria-*] attributes do not match their roles
And that happens if you output no footer meta on your archives.
Add this PHP Snippet to your site to remove the element and that warning.
add_action( ‘wp’, function() {
if(is_home() || is_archive() || is_search()){
remove_action( ‘generate_after_entry_content’, ‘generate_footer_meta’ );
}
});
But still the problem is not solved. So, please help.