Thanks Micah,
I done some reading and got it working using:
<?php
function really_remove_the_2010_excerpt_filter () {
remove_filter( 'excerpt_length', 'twentyten_excerpt_length' );
remove_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' );
remove_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
}
add_action('after_setup_theme','really_remove_the_2010_excerpt_filter');
?>
I obtained this from a previous WP thread from a person with a similar problem.
However, am I correct in saying that the code above must remove the ‘Continue reading’ link from all excerpts on my site?
How would I remove this filter from ONLY promotion slider posts?
I don’t want this to affect other post types on my website.
Thanks again!