07-20-2001
i wrote a blog updating tool with procmail which most of the OH kids are using now. you can see a couple of them at the people page, and if you are interested in it for your own uses, just let me know.
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'); ?>
i wrote a blog updating tool with procmail which most of the OH kids are using now. you can see a couple of them at the people page, and if you are interested in it for your own uses, just let me know.