Link about
From Photostand Wiki
link_about()
The link_about function will return the reference value of a link pointing toward the about page. It can be used in any page, at any time. This function will always display the exact page path, so there's no need to add the Photoblog_path function before.
[edit]
Parameters
This function has no parameters.
[edit]
Examples
In a normal paragraph
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>My photoblog</title>
</head>
<body>
<p>To learn more about this photoblog and myself, take a look at the <a href="<?php echo link_about(); ?>">about</a> page.</p>
</body>
</html>
Here, the link to the about will simply appear as normal text directly in the page.

