Thanks. Not exactly what I was looking for though. I was looking for the function within the script, not the control panel. I’m noticing that you insert that function within your page to use it on more.php but I’m not quite sure where the function is coming from. Weblog.fns, weblog.cp.php? I have a block of php code that wish to insert.
*edit*
Found it on line 1621 of weblog.fns.php
However, I still don’t see where more is being echo’d out so that I can split it. Would like to add this little tid bit of code:
// [new]
// split the entry into seperate parts
$parts = preg_split("/\[new]/",$more);
$count = count($parts);
// get the page variable from the browser url
$page = $_GET['page'];
$id = $_GET['id'];
echo $parts[$page];
echo "<p>";
echo "Go to Page: ";
for($i = 0; $i < $count; $i++){
echo "<b><a href=\"$PHP_SELF?id=$id&page=$i\">$i</a></b> ";
}
Still need to add the prev and next links.