You choose the forum you are moving stuff from on the bottom where it says Other Options > Forum
If you are unfamiliar with this, I'd suggest trying it out on a test forum first.
As for the second part, that is the code you would have to change in the file. The
API should help you with the function:
Quote:
sanitize_pageresults (line 2241) Ensures that the variables for a multi-page display are sane
void sanitize_pageresults (integer $numresults, integer &$page, integer &$perpage, [integer $maxperpage = 20], [integer $defaultperpage = 20]) - integer $numresults: Total number of items to be displayed
- integer &$page: (ref) Current page number
- integer &$perpage: (ref) Desired number of results to show per-page
- integer $maxperpage: Maximum allowable results to show per-page
- integer $defaultperpage: Default number of results to show per-page
|
So, as you can see, you would change the $perpage variable in order to show a lot more posts per page. You can either add "&perpage=xx" to the end of your url (no code change necessary) or you can modify the code to have a default of perpage xx by using a plugin (I'm guessing here since I haven't tried using a plugin for this).