I want to automatically add the URL of the page to the very bottom of each page in small font. (Being a believer in SEO and that the last 20 or so words on the page do matter.) What's the proper format for the php string that I should insert?
did you mean the post url of or the blog url? if blog url, yes we can put it at the footer but for post url, i don't think we can put it outside the loop. -cypher.
You should be able to show the current post name as a link with this: <a href="<?php echo get_settings('Page'); ?>"><?php wp_title(); ?></a>