=== Plugin Name === Contributors: Jayjdk Tags: quicktag, quicktags, editor, quick, tag, generator, import, export Requires at least: 3.3 Tested up to: 3.3 Stable tag: 1.1 Allows you easily to add custom Quicktags to the post editor == Description == This plugin, Jayj Quicktag, allows you easily to add custom Quicktags to the post, page or a custom editor. It adds a settings page where you can add all the Quicktags you want (see Screenshots) It's uses the new WordPress 3.3 Quicktags changes so it won't work with older versions of WordPress. It supports both import and export of your Quicktags so you easily can add them to another WordPress install. == Installation == 1. Install Jayj Quicktag either via the WordPress.org plugin directory, or by uploading the files to your `/wp-content/plugins/` directory. 2. Activate the plugin through the 'Plugins' menu in WordPress 3. Go to the settings page `Settings > Jayj Quicktag` 4. Add all the Quicktags you want! == Frequently Asked Questions == = Does this work with older versions than 3.3? = No, sorry. Due to the [javascript changes](http://wpdevel.wordpress.com/2011/09/23/javascript-changes-in-3-3/) in 3.3 this plugin **does not** work with older versions. = Can I add a self-closing Quicktag? = Yes. You can add a self-closing Quicktag (like <hr />) by leaving "End Tag(s)" empty. = Can I delete a Quicktag? = Yes, you can. Just leave the "Button Label" empty. = I'm a theme author, can I set up default Quicktags if a user choose to use this plugin? = Yes, you can. If you put this code in your theme's functions.php, they will automatically be added if a user install this plugin function my_theme_jayj_quicktag_defaults( $defaults ) { $defaults = array( 'buttons' => array( array( 'text' => 'h3', 'title' => 'Heading 3', 'start' => '<h3>', 'end' => '</h3>' ), array( 'text' => 'hr', 'title' => 'Horizontal line', 'start' => '<hr />', 'end' => '' ), ) ); return $defaults; } add_filter( 'jayj_quicktag_defaults', 'my_theme_jayj_quicktag_defaults' ); = Can I export/import Quicktags? = Yes. Version 1.1 introduced the import and export feature. On the options page, click the "Export Quicktags" title. That should give you a textarea with some strange looking code. You should copy/save that so you can use it to import on another site. To find the import feature, click on the "Import Quicktags" on the same page. Paste the copied code into the textarea and click "Import Quicktags". The Quicktags should now be imported and it doesn't overwrite the old ones. == Screenshots == 1. The Quicktag generator settings page. 2. A post editor with the new Quicktags == Changelog == = 1.1 = * You can now export and import Quicktags * Fixed rare bug with Quicktags not deleting = 1.0 = * Initial Release == Upgrade Notice == = 1.1 = You can now export and import Quicktags