when you install wp change the table prefix of the db to something else instead of leaving it stock “wp_”. and do that for each install.
you change that in the wp-config.php file. i/e
// Change the prefix if you want to have multiple blogs in a single database.
//$table_prefix = ‘wpyour1stblog_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
then for your 2nd one- //$table_prefix = ‘wpyour2ndblog_’;
you can use a php include to include the login.php on your index, you may have to modify it though to fit.
Thread Starter
bAs
(@bas)
Maybe I should clarify- I have the categories listed in the stock drop down.
My site is http://www.ctfzone.net/zone/
So what i need to happen (and Iv’e searched for this) is when I choose a category from the dropdown- I want it to pull only the last 15 articles for display on the index template.
Right now when I click on any category it displays the whole list (which cripples the site for awhile if the category has over 200 entries or so :()
If i need to do the non drop down -that’s np, please lemme know if you know.