07-19-2001
just because you try, doesn’t make you a superstar.
just because you’re you, doesn’t mean thats bad.
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'); ?>
just because you try, doesn’t make you a superstar.
just because you’re you, doesn’t mean thats bad.