In the functions.php file for your theme or skin add the following:
if( function_exists( 'presentationtoolkit' ) ) {
presentationtoolkit(
array( 'option1' => 'Text for Option One',
'option2' => 'Text for Option Two',
'option3' => 'Text for Option Three' ),
__FILE__
);
}
You will now have an admin page for your theme or skin.
To access your theme or skin options simply use
getthemeoption('option')
or
getskinoptions('option')
respectively. If the option is not set, or doesn't exist, then null will be returned.
You'll find the format of the various options at frenchfragfactory.




