//change excerpt
function custom_excerpt_more($more)
{
return ' …<br />' . '<a href="'. get_permalink($post->ID) . '">' . 'Continue Reading: '. get_the_title() . '</a>';
}
add_filter('excerpt_more', 'custom_excerpt_more');
newbie alert...
I need to change the above syntax to replace . 'Continue Reading: '. get_the_title() with an image..
I am a complete newb with php but i am good with html..
thanks
Andy