Moved respond.js from recommended to required plugins. Added title="" to read more links.

This commit is contained in:
Mickey Kay
2014-01-20 10:27:30 -08:00
parent 56b7a6439e
commit 17d281fab9
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -261,6 +261,12 @@ function trestle_register_required_plugins() {
'required' => true,
),
array(
'name' => 'Respond.js',
'slug' => 'respondjs',
'required' => true,
),
// Optional plugins
array(
'name' => 'Black Studio TinyMCE Widget',
@@ -346,12 +352,6 @@ function trestle_register_required_plugins() {
'required' => false,
),
array(
'name' => 'Respond.js',
'slug' => 'respondjs',
'required' => false,
),
array(
'name' => 'Simple Image Sizes',
'slug' => 'simple-image-sizes',
+1 -1
View File
@@ -310,7 +310,7 @@ function trestle_read_more_link( $default_text ) {
$custom_text = esc_attr( genesis_get_option( 'trestle_read_more_text' ) );
if ( $custom_text )
return '&hellip;&nbsp;<a class="more-link" href="' . get_permalink() . '">' . $custom_text . '</a>';
return '&hellip;&nbsp;<a class="more-link" title="' . $custom_text . '" href="' . get_permalink() . '">' . $custom_text . '</a>';
else
return $default_text;
}