Hm, okay, I realized it’s rather easy to do in the theme editor. If someone else faces the same issue, I resolved these by adding some parts to content-featured-post.php in the theme editor:
Instead of the original:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a class="post-thumbnail" href="<?php the_permalink(); ?>">
I used this:
<article id="featured-post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-label="<?php the_title(); ?>">
-
This reply was modified 2 years ago by gabortoth.
-
This reply was modified 2 years ago by gabortoth.
-
This reply was modified 2 years ago by gabortoth.
-
This reply was modified 2 years ago by gabortoth.
-
This reply was modified 2 years ago by gabortoth.