Wordpress can be used in many different ways. The problem I am having is that the information on Wordpress is in the form of uncategorized and indexed blog articles. So I assembling the information here in a book format for easy reading and reference
Create a sitemap or category structure
index.php
8-books
9-mp3s
10-games
11-tricks and tips
12-hardware
13-accessories
Create the pages for each section or category
books.php
mp3.php
games.php
trickstips.php
hardware.php
accesories.php
Using the following code and changing the category number to suit in each page. The code below would correspond to the "books" catogory.
<?php
$blog = 1;
$cat="8";
require('./wp-blog-header.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="eng">
<head profile="http://gmpg.org/xfn/1">
Program in the categories in to Wordpress index.php
<?php
$cat="1 2 3 4 5 6 7";
require('./wp-blog-header.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="eng">
<head profile="http://gmpg.org/xfn/1">
<?php
// further down in the index.php you want to exclude the new
// categories from the main index
wp_list_cats('exclude=8,9,10');
?>