Code:
//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');
How can i modify the above code to display a floating image to the right instead?
I would also like the link to open in a new window.
many thanks,
Andy