01-16-2001
started writing again. not sure how long it will last but i thought id give it a try. have some new projects these days. nothing really exciting, but it keeps me busy. thats all i care to be right now – busy.
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'); ?>
started writing again. not sure how long it will last but i thought id give it a try. have some new projects these days. nothing really exciting, but it keeps me busy. thats all i care to be right now – busy.