Hello,
My blog is: http://www.gabriew.com
I installed a plugin called "The WordPress Bar" > http://www.anthonymontalbano.com/software/wordpress/wp-bar/
And, the option on "read more" is jumping to "#more-".
I Saw the post http://codex.wordpress.org/Customizing_the_Read_More but i can't change this.
function remove_more_jump_link($link) {
$offset = strpos($link, '#more-');
if ($offset) {
$end = strpos($link, '"',$offset);
}
if ($end) {
$link = substr_replace($link, '', $offset, $end-$offset);
}
return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');
"Continue reading “Ganhe forças com o <span class="“caps”">CRM</span> em sua empresa!” »"
How can i fix this?
Thanks!