I still have the problem with development version (0.16)
is there a way to fix that?
thanks
hello Mark,
for your second question,
in your theme function.php there should be something like this:
function new_excerpt_more($more) {
global $post;
return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Continue reading</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
change the “Continue reading” with your language text
bye
elBivio