A sophisticated way to get a custom written ‘read more’ text added to your posts in the theme Twenty Ten (or its child themes).
The code builds on this article I posted earlier.
It uses the custom field with the key ‘cont_read’ to hold the custom text.
Add this code to functions.php of the theme:
/* Twenty Ten custom 'continue reading' / / custom field ($key = 'cont_read' ) dependant 'continue reading' text / alchymyth 2010 */ class Transformation_Text_Wrangler { function reading_more($translation, $text, $domain) { global $post; $cont_read = get_post_meta( $post->ID, 'cont_read', true ); if( $cont_read ) : $cont_read = htmlentities($cont_read, ENT_QUOTES); $translations = &get_translations_for_domain( $domain ); if ( $text == 'Continue reading <span>→</span>' ) { return $translations->translate( $cont_read . ' <span>»</span>' ); } return $translation; // custom field value else : return $translation; // standard text endif; } } add_filter('gettext', array('Transformation_Text_Wrangler', 'reading_more'), 10, 4);