2013-02-21, 23:59:13
What version of GS are you using ?
Name is not stored in pages.
You would have to look it up in the users datafile for that user.
display name is 3.2+
psuedocode
Name is not stored in pages.
You would have to look it up in the users datafile for that user.
display name is 3.2+
psuedocode
PHP Code:
if (file_exists(GSUSERSPATH . $author . '.xml')) {
$data = getXML(GSUSERSPATH . $author . '.xml');
$NAME = stripslashes($data->NAME);
}