Allows you easily to add custom Quicktags to the post editor
No, sorry. Due to the javascript changes in 3.3 this plugin does not work with older versions.
Yes. You can add a self-closing Quicktag (like <hr />) by leaving "End Tag(s)" empty.
Yes, you can. There's two ways. The first one is to click the delete link on the right (you'll see it when you roll over the row)
The other way is to leave the "Button Label" field empty.
Yes. Since 1.2 you can change the order of the tags. Just roll over the number on the left and you should to able to drag 'n' drop the rows.
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' );
Plugin authors can use this method as well.
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.
Requires: 3.3 or higher
Compatible up to: 3.4
Last Updated: 2012-4-27
Downloads: 720
Got something to say? Need help?