WPThumbs
Themes Plugins By purpose By industry Best-of lists Fix it guides
Free Plugin by Frank Bueltge v2.6.1

AddQuicktag

This plugin makes it easy to add Quicktags to the html - and visual-editor.

AddQuicktag

The facts

Rating
4.7★ from 44
Active installs
100k+
Price
Free
Last updated
20 May 2021
Added
May 2007
Requires WP
4.0
Tested up to
WP 5.7.17
Downloads
1,391,725

Our analysis

AI-assisted

AddQuicktag is a WordPress plugin that allows you to add configurable Quicktags to both the HTML and visual editors. It supports custom post types and provides the ability to export and import Quicktags as JSON files for use across different installations.

The plugin is suitable for users who want to enhance their editing experience by adding custom Quicktags to various post types. It includes hooks for further customization, allowing users to adjust functionality as needed.

Best for: This plugin is best for WordPress users looking to streamline their editing process with custom Quicktags.

What it does well

  • Enables addition of custom Quicktags to editors
  • Supports export and import of Quicktags as JSON
  • Works with custom post types
  • Includes hooks for further customization

Where it falls short

  • Limited information on specific features and usage
  • No details on support or updates beyond May 2021

Verdict

AddQuicktag offers useful functionality for enhancing the WordPress editor, though details on support and updates are limited.

From the developer

Frank Bueltge's own description of AddQuicktag, lightly tidied.

This plugin makes it easy to add Quicktags to the html – and visual-editor. It is possible to export your Quicktags as a JSON – file that can be imported in other installations of the plugin.

WP-AddQuicktag for WordPress is originally created by Roel Meurders. The versions in the Repo of AddQuicktag are newer versions, this is a complete rewrite of version 2.0.0 with more functionality.

The plugin can add configurable custom quicktags to the editor of every post type, including custom post types from other sources. You may choose a post type for which a quicktag shall show up in the editor.
If this should not work perfectly well for you, you may also use the hooks inside the plugin. See the examples and hint inside the tab “Other Notes“.

Bugs, technical hints or contribute

Please give me feedback, contribute and file technical bugs on GitHub Repo. The Wiki on this page has also several hints for the plugin.

Crafted by Inpsyde · Engineering the web since 2006.

Hook for custom post types

The plugin adds the quicktag by default to post types/ID post, page and comment. To use the plugin for other post types also you may use a filter; see the following example or an example plugin in the Gist 1595155.

// add custom function to filter hook 'addquicktag_post_types'
add_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );
/**
 * Return array $post_types with custom post types
 *
 * @param   $post_type Array
 * @return  $post_type Array
 */
function my_addquicktag_post_types( $post_types ) {

    $post_types[] = 'edit-comments';
    return $post_types;
}

Hook for custom pages

It is possible also to filter the pages inside the backend. By default the scripts include the pages post.php, comment.php. The following example changes this for an another page.

add_filter( 'addquicktag_pages', 'my_addquicktag_pages' );
/**
 * Return array $page with custom page strings
 *
 * @param   $page Array
 * @return  $page Array
 */
function my_addquicktag_pages( $page ) {

    $page[] = 'edit-comments.php';
    return $page;
}

See this Gist as an example for how to add the Quicktags to the editor of comments: Gist: 3076698.
If you want the Quicktags of this plugin to work on the Quickedit of comments as well, remove the .example-part of addquicktag_quickedit_comment.php.example filename. The file is a stand alone helper plugin for Add Quicktag. You’ll need to activate this file (plugin) separately in ‘Manage Plugins’.

Hook for custom buttons

It is possible to add custom buttons to the editor, if the plugin is active.

The following example adds buttons. The params inside the array are the same as in the settings of the plugin.

Read the full description on the official page →

Tagged as

Alternatives

Other plugins for custom content structures.

Ad Inserter

Manage Google AdSense ads, banners, ad rotation, sticky widgets, AMP ads, ads.txt, tracking, header and footer...

Free 300k+ installs 4.9★ (2,428)
Advanced Custom Fields

ACF helps customize WordPress with powerful, professional and intuitive fields. Proudly powering over 2 millio...

Free 2M+ installs 4.5★ (1,438)
Simple Custom Post Order

Easily reorder posts, pages, custom post types, and taxonomies with intuitive drag-and-drop sorting in the Wor...

Free 300k+ installs 4.8★ (569)
WP Activity Log

The #1 user-rated activity log plugin for event logging, activity monitoring and change tracking.

Free 300k+ installs 4.7★ (488)
Custom Post Type UI

Admin UI for creating custom content types like post types and taxonomies

Free 1M+ installs 4.6★ (276)