Photoblog about
From Photostand Wiki
photoblog_about()
The photoblog_about function will return the about value that you define in your photoblog administration. It can be used only in about.php, at any time.
Its main function is to show a description about the photoblogger and/or the photoblog. See below for an example.
[edit]
Parameters
This function has no parameters.
[edit]
Examples
In the about.php page
<!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>About</title>
</head>
<body>
<?php echo photoblog_about(); ?>
</body>
</html>
So, basically, in your about.php page, this function will generate the content that you have created via the administration(Options > Edit the about page).

