is pagination the module that adds page numbers to the bottom of lists of nodes...or is this feature part of the drupal core?

Comments

Anonymous’s picture

I don't think there's a pagination module. Look at the pager.inc file in the includes folder. You will see a bunch of theme functions which you can override in order to modify your pager. Don't modify pager.inc though. Instead, read this documentation which will show you how to override existing theme functions: http://drupal.org/node/341628

Hope that's helpful

Doug Gough
ImageX Media

calebm12’s picture

so the page number, next, last is something built into themes?

found this module....http://drupal.org/project/pagination
maybe it just divides long nodes into pages?

thanks for yoru help

dnewkerk’s picture

It's part of core... the Pagination and Paging modules are for splitting up a single node into multiple pages.

calebm12’s picture

many thanks!