Re: Wordpress Bloggers Please Help
1) create separate pages in wordpress, one each for 'privacy policy' etc and set them as 'private' so that they don't show-up anywhere.
next there will be 'footer.php' file in your theme files. open that file and just create links as you want (in this case near the copyright text) and link them to the wordpress pages.
2) DISCLAIMER: This step needs more info and explanation
open 'header.php' file from your theme files. find where this code is:
PHP:
<?php wp_list_pages(' '); ?>
and replace it with
PHP:
<?php wp_list_categories(' '); ?>
the theme you have might have diff. arguments in the function (stuff inside the single quotes ' '). for more info about the code refer these pages
*codex.wordpress.org/Template_Tags/wp_list_pages
*codex.wordpress.org/Template_Tags/wp_list_categories
I guess you can get more elegant step by step instructions on the web if you search properly
_