Explorar el Código

Added space to Read More title attribute

The title attribute for the Read More link was lacking a space between the word 'Read' and the post title.
José Luis Cruz hace 12 años
padre
commit
779c39180d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      library/bones.php

+ 1 - 1
library/bones.php

@@ -288,7 +288,7 @@ function bones_filter_ptags_on_images($content){
 function bones_excerpt_more($more) {
 function bones_excerpt_more($more) {
 	global $post;
 	global $post;
 	// edit here if you like
 	// edit here if you like
-return '...  <a class="excerpt-read-more" href="'. get_permalink($post->ID) . '" title="'. __( 'Read', 'bonestheme' ) . get_the_title($post->ID).'">'. __( 'Read more &raquo;', 'bonestheme' ) .'</a>';
+return '...  <a class="excerpt-read-more" href="'. get_permalink($post->ID) . '" title="'. __( 'Read ', 'bonestheme' ) . get_the_title($post->ID).'">'. __( 'Read more &raquo;', 'bonestheme' ) .'</a>';
 }
 }