mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogrow.git
synced 2025-08-26 16:32:31 +08:00
Remove most title attributes from links
This commit is contained in:
parent
fa84dcfb45
commit
ed6a820ffb
6 changed files with 10 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
<article id="post-<?php the_ID(); ?>" <?php post_class('item 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-featured'); ?>
|
||||
<?php else: ?>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<div class="item-slant-right"></div>
|
||||
<span class="item-category"><?php the_category(' / '); ?></span>
|
||||
<h3 class="item-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>
|
||||
</h3><!--/.item-title-->
|
||||
</div>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<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-small'); ?>
|
||||
<?php else: ?>
|
||||
|
@ -13,7 +13,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>
|
||||
|
||||
|
|
|
@ -9,7 +9,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>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<article <?php post_class(); ?>>
|
||||
|
||||
<div class="related-thumbnail">
|
||||
<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: ?>
|
||||
|
@ -26,7 +26,7 @@
|
|||
<div class="related-inner">
|
||||
|
||||
<h4 class="related-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>
|
||||
</h4><!--/.related-title-->
|
||||
|
||||
<div class="related-date"><?php the_time( get_option('date_format') ); ?></div>
|
||||
|
|
|
@ -13,7 +13,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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue