View Single Post
Old 11-11-2012, 12:01 AM   PM User | #1
neodjandre
Regular Coder

 
Join Date: Aug 2002
Posts: 145
Thanks: 5
Thanked 0 Times in 0 Posts
neodjandre is an unknown quantity at this point
Cool Change code to display image instead

Code:
//change excerpt
function custom_excerpt_more($more)
{
  return  ' &hellip;<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
neodjandre is offline   Reply With Quote