03-10-2008, 08:25 PM
|
#4 (permalink)
|
|
The Frequenter
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
|
In your configurations file;
PHP Code:
$sitename = 'My site name';
In your functions file;
PHP Code:
function echoSiteTitle( $sitepath = '' ) { global $sitename; if ( $sitepath ) { return '<title>'. $sitename .' '. $sitepath .'</title>'; } else { return '<title>'. $sitename .'</title>'; } }
In your index file;
PHP Code:
echoSiteTitle(); // Displays "My site name" echoSiteTitle('title'); // Displays "My site name title"
__________________
"Life is a bitch, take that bitch on a ride"
|
|
|