Ok. I followed the directions in this blog post.
http://zeaks.org/tutorials/display-excerpts-in-twenty-twelve-theme/
wonderful post btw. It workes, except the read more link does not. It shows the code. How do I change this?
code for the functions php in my child theme of twentytwelve:
<?php
// Remove the ... from excerpt and change the text
function change_excerpt_more()
{
function new_excerpt_more($more)
{
// Use .read-more to style the link
return ' < span class = "Click-To-Read-More." > < a href = "' . get_permalink($post->ID) . '" > Click to read more. ยป </ a > </ span > ';
}
add_filter('excerpt_more', 'new_excerpt_more');
}
add_action('after_setup_theme', 'change_excerpt_more');
link to site having issues
http://tffppodcast.com/listen
As you can see the excerpt works except the read more link is not working. I'm trying to customise that fraze to read something like "Continu reading" or "Click to continu reading" or something like that. thanks.