=== Presentation Toolkit === Contributors: tompahoward Donate link: http://windyroad.org/software/wordpress/presentation-toolkit-plugin/#donate Tags: theme, skin, admin Requires at least: 2.1 Tested up to: 2.1 Stable tag: 0.0.2 The Presentation Toolkit Plugin adds an administration page under the 'Presentation' menu for Presentation Toolkit compatible themes and skins. == Description == The Presentation Toolkit Plugin adds an administration page under the 'Presentation' menu for [Presentation Toolkit compatible themes and skins](http://windyroad.org/software/wordpress/presentation-toolkit-plugin/#ptk-themes). The Presentation Toolkit Plugin is based on [the Wordpress Theme Toolkit](http://frenchfragfactory.net/ozh/my-projects/wordpress-theme-toolkit-admin-menu/) by [Ozh](http://planetozh.com). == Installation == 1. copy the 'presentationtoolkit' directory to your 'wp-contents/plugins' directory. 1. Activate the Presentation Toolkit in your Plugins administration page. 1. Install and activate a [Presentation Toolkit compatible theme or skin](http://windyroad.org/software/wordpress/presentation-toolkit-plugin/#ptk-themes). 1. You will now see a menu for the theme or skin in the 'Presentation' menu. == Screenshots == 1. Changing options == Frequently Asked Questions == = How do I Use the Presentation Toolkit in my theme/skin? = 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. = How do I access the theme's/skin's options? = To access your theme or skin options simply use get_theme_options()->option['option1'] or get_skin_options()->option['option1'] respectively. = What is the format of the various options? = You'll find the format of the various options at [frenchfragfactory](http://frenchfragfactory.net/ozh/my-projects/wordpress-theme-toolkit-admin-menu/3/). == Release Notes == * 0.0.2 * Fixed validation issues * 0.0.1 * Fixed generated skin URLS * 0.0.0 * Initial Release