Remove most title attributes from links

This commit is contained in:
Alexander Agnarson 2018-09-08 16:54:16 +02:00
parent fa84dcfb45
commit ed6a820ffb
6 changed files with 10 additions and 10 deletions

View file

@ -1,7 +1,7 @@
<li>
<article id="post-<?php the_ID(); ?>" <?php post_class('entry group'); ?>>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<a href="<?php the_permalink(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('blogrow-medium'); ?>
<?php else: ?>
@ -12,7 +12,7 @@
<header class="entry-header">
<div class="entry-category"><?php the_category(' / '); ?></div>
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2><!--/.entry-title-->
</header>