07-31-2001
i need to eat more. i starting building a server with eric and jeff. it didnt go as well as planned.
we need a development environment so we dont keep screwing up production.
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 need to eat more. i starting building a server with eric and jeff. it didnt go as well as planned.
we need a development environment so we dont keep screwing up production.