Title: AddQuicktag
Author: Frank Bueltge
Published: <strong>Èbìbí  4, 2007</strong>
Last modified: Èbìbí  20, 2021

---

Ṣàwárí àwọn plugin

![](https://ps.w.org/addquicktag/assets/banner-772x250.png?rev=1099240)

Plugin yìí **kò tíì ṣe àyẹ̀wò pẹ̀lú àwọn ìtújáde mẹ́ta pàtàkì tó kẹ́yìn ti WordPress**.
Ó lè jẹ́ pé a kò tọ́jú tàbí ṣe àtìlẹ́yìn fún un mọ́, ó sì lè ní àwọn ọ̀ràn ìbámu
nígbà tí a bá lò ó pẹ̀lú àwọn ẹ̀yà WordPress tuntun.

![](https://ps.w.org/addquicktag/assets/icon-256x256.png?rev=1429627)

# AddQuicktag

 Láti ọwọ́ [Frank Bueltge](https://profiles.wordpress.org/bueltge/)

[Ṣe ìgbàsílẹ̀](https://downloads.wordpress.org/plugin/addquicktag.2.6.1.zip)

 * [Àwọn àlàyé](https://yor.wordpress.org/plugins/addquicktag/#description)
 * [Àwọn àgbéyẹ̀wò](https://yor.wordpress.org/plugins/addquicktag/#reviews)
 *  [Ìgbéwọlẹ̀](https://yor.wordpress.org/plugins/addquicktag/#installation)
 * [Ìdàgbàsókè](https://yor.wordpress.org/plugins/addquicktag/#developers)

 [Ìrànlọ́wọ́](https://wordpress.org/support/plugin/addquicktag/)

## Àpèjúwe

This plugin makes it easy to add Quicktags to the html Ìtumọ̀ Yorùbá: – and visual-
editor. It is possible to export your Quicktags as a JSON Ìtumọ̀ Yorùbá: – file 
that can be imported in other installations of the plugin.

WP-AddQuicktag for WordPress is originally created by [Roel Meurders](http://roel.meurders.nl/).
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](https://wordpress.org/extend/plugins/addquicktag/other_notes/)“.

#### Bugs, technical hints or contribute

Please give me feedback, contribute and file technical bugs on [GitHub Repo](https://github.com/bueltge/addquicktag).
The Wiki on this page has also several hints for the plugin.

**Crafted by [Inpsyde](https://inpsyde.com) · 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](https://gist.github.com/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](https://gist.github.com/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Ìtumọ̀ Yorùbá: ’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.

    ```
    if ( class_exists( 'Add_Quicktag' ) ) :
    add_filter( 'addquicktag_buttons', 'my_addquicktag_buttons' );

    function my_addquicktag_buttons( $buttons ) {

        $buttons[] = array(
            'text'          => 'Permalink',
            'title'         => '',
            'start'         => '[permalink]',
            'end'           => '[/permalink]',
            'access'        => '',
            'order'         => 1,
            'visual'        => 1,
            'post'          => 0,
            'page'          => 1,
            'comment'       => 0,
            'edit-comments' => 0
        );
        $buttons[] = array(
            'text'          => 'Button',
            'title'         => '',
            'start'         => '<span class="border blue">',
            'end'           => '</span>',
            'access'        => '',
            'order'         => 2,
            'visual'        => 1,
            'post'          => 0,
            'page'          => 1,
            'comment'       => 0,
            'edit-comments' => 0
        );
        return $buttons;
    }
    endif;
    ```

#### License

Good news, this plugin is free for everyone! Since itÌtumọ̀ Yorùbá: ’s released 
under the GPL, you can use it free of charge on your personal or commercial blog.
But if you enjoy this plugin, you may consider to thank me and leave a [positive review](https://wordpress.org/support/plugin/addquicktag/reviews/#new-post)
for the time IÌtumọ̀ Yorùbá: ’ve spent writing and supporting this plugin. And I
really donÌtumọ̀ Yorùbá: ’t want to know how many hours of my life this plugin has
already eaten 😉

## Àwọn àwòrán ìbòjú

[⌊Settings area in WordPress 4.0-alpha⌉⌊Settings area in WordPress 4.0-alpha⌉[

Settings area in WordPress 4.0-alpha

[⌊HTML Editor with new Quicktags⌉⌊HTML Editor with new Quicktags⌉[

HTML Editor with new Quicktags

[⌊Visual editor with new Quicktags⌉⌊Visual editor with new Quicktags⌉[

Visual editor with new Quicktags

## Ìgbéwọlẹ̀

#### Requirements

 * WordPress version 4.0 and later (see _Compatible up to_)

#### Installation

 1. Unpack the download-package
 2. Upload the files to the `/wp-content/plugins/` directory
 3. Activate the plugin through the ‘Plugins’ menu in WordPress or for the Network,
    if you will use in Multisite for all Sites
 4. Got to ‘Settings’ menu and configure the plugin

## Àwọn àgbéyẹ̀wò

![](https://secure.gravatar.com/avatar/948c5e9c4320828f161bf9a503c00aedd2a6fa1d7aa6b21449b0f436ab27e56a?
s=60&d=retro&r=g)

### 󠀁[The trouble has been resolved. ( AddQuicktag 2.6.1 )](https://wordpress.org/support/topic/cannot-save-settings-addquicktag-2-6-1/)󠁿

 [himejiro](https://profiles.wordpress.org/himejiro/) Òkúdù 8, 2021

WordPress4.9.18 AddQuicktag 2.6.1 Japanese Ìtumọ̀ Yorùbá: —Ìtumọ̀ Yorùbá: —Ìtumọ̀
Yorùbá: —Ìtumọ̀ Yorùbá: —- This plugin is very useful！ （star*5 ★★★★★） 　 However,
after updating, I can no longer save the label name of the button. I typed it in
English instead of Japanese and it was solved! But itÌtumọ̀ Yorùbá: ’s time to finish
using it… I am not good at English. sorry.

![](https://secure.gravatar.com/avatar/d6ec0b4097be9a20d47339b656e82aa151c5f7224b94cfce9c2384fb9c267db1?
s=60&d=retro&r=g)

### 󠀁[Old-fashioned interface](https://wordpress.org/support/topic/old-fashioned-interface/)󠁿

 [BeeCee](https://profiles.wordpress.org/csigncsign/) Ẹrẹ́nà 12, 2021

Meanwhile in 2021 the plugin could get a new interface … it is hard and confusing
to edit there anything.

![](https://secure.gravatar.com/avatar/d6fa7f2afce64f7c0c06c687a825173856f7110d71260a8a585cbda88fe7d450?
s=60&d=retro&r=g)

### 󠀁[Обалденный плагин](https://wordpress.org/support/topic/%d0%be%d0%b1%d0%b0%d0%bb%d0%b4%d0%b5%d0%bd%d0%bd%d1%8b%d0%b9-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/)󠁿

 [babylonix](https://profiles.wordpress.org/babylonix/) Bélú 26, 2020

Очень удобный, как раз то, чего не хватало. Спасибо за работу.

![](https://secure.gravatar.com/avatar/c8f7b8da9193f3fb2624ce3e88d1cb65cdb93656f4d5ee8ed6b11c4fc5f336fb?
s=60&d=retro&r=g)

### 󠀁[Old but gold](https://wordpress.org/support/topic/old-but-gold-4/)󠁿

 [micdt](https://profiles.wordpress.org/micdt/) Agẹmọ 29, 2018

Still very useful in many situations!

![](https://secure.gravatar.com/avatar/70ddf1a3f7f2a78fc97a852b479e51ce9a866545cf9f06975048ec42081048ef?
s=60&d=retro&r=g)

### 󠀁[Simple, easy, very useful plugin](https://wordpress.org/support/topic/simple-easy-very-useful-plugin/)󠁿

 [cul9laia1](https://profiles.wordpress.org/cul9laia1/) Ẹrẹ́nà 3, 2018

really appreciate.

![](https://secure.gravatar.com/avatar/1d5e8e793ab2966304fabe79c277fc8d4d4636f8ccafca435da61cb050cdc4a9?
s=60&d=retro&r=g)

### 󠀁[Sehr gut](https://wordpress.org/support/topic/sehr-gut-47/)󠁿

 [eberhardiner](https://profiles.wordpress.org/eberhardiner/) Èrèlé 3, 2018

Sehr nützlich und leicht anzuwenden

 [ Ka gbogbo àwọn àgbéyẹ̀wò 45 ](https://wordpress.org/support/plugin/addquicktag/reviews/)

## Àwọn Olùkópa & Olùgbéejáde

“AddQuicktag” jẹ́ ètò ìṣàmúlò orísun ṣíṣí sílẹ̀. Àwọn ènìyàn wọ̀nyí ti ṣe ìkópa 
sí plugin yìí.

Àwọn Olùkópa

 *   [ Frank Bueltge ](https://profiles.wordpress.org/bueltge/)
 *   [ Syde GmbH (formerly Inpsyde) ](https://profiles.wordpress.org/inpsyde/)

A ti túmọ̀ “AddQuicktag” sí àwọn èdè agbègbè 14. Ọpẹ́lọpẹ́ fún [àwọn atúmọ̀ èdè](https://translate.wordpress.org/projects/wp-plugins/addquicktag/contributors)
fún àwọn ìkópa wọn.

[Túmọ̀ “AddQuicktag” sí èdè rẹ.](https://translate.wordpress.org/projects/wp-plugins/addquicktag)

### Ṣe o nífẹ̀ẹ́ sí ìdàgbàsókè?

[Ṣàwárí koodu](https://plugins.trac.wordpress.org/browser/addquicktag/), ṣàyẹ̀wò
[ibi ìpamọ́ SVN](https://plugins.svn.wordpress.org/addquicktag/), tàbí ṣe àgbékalẹ̀
sí [àkọsílẹ̀ ìdàgbàsókè](https://plugins.trac.wordpress.org/log/addquicktag/) nípasẹ̀
[RSS](https://plugins.trac.wordpress.org/log/addquicktag/?limit=100&mode=stop_on_copy&format=rss).

## Àkọsílẹ̀ àwọn àyípadà

#### 2.6.1 (2021-05-20)

 * Fix storage and update of post type checkboxes in the settings pages.

#### 2.6.0 (2021-04-29)

 * Maintenance for the jQuery Update to run with the last WP Core update, jQuery
   3.5*
 * Maintenance several code styles, testing PHP7/8
 * Remove dependecies for WP version smaller 3.3

#### 2.5.3 (2018-11-06)

 * Fix error warning in edit mode without button settings.

#### 2.5.2 (2017-11-16)

 * Fixed several code strict style issues.
 * Fixed javascript topics to write more strict.

#### 2.5.1 (2017-03-09)

 * Fixed Multisite error for check, is the plugin active in the MU Environment.

#### 2.5.0 (2017-02-21)

 * Fixed PHP7.1 problem to save new buttons.
 * Adds title attribute to view on hover to each button in the TinyMCE listbox.
 * Adds possibilty to use Dashicon “icons” for TinyMCE buttons.
 * Button Label is not more required, only the start-tag

#### 2.4.3 (2015-08-21)

 * Add czech translation, thanks to [https://github.com/MikkCZ](https://github.com/MikkCZ)
 * Bugfix: TinyMCE input select was changed in his object, changes on the script
   for the visual editor to set quicktags.

#### 2.4.2 (2015-02-24)

 * Remove `remove_accents()` for save title and attribute on buttons to allow all
   characters.

#### 2.4.1 (2015-01-19)

 * Bugfix for save label of each button; change sanitizing

#### 2.4.0 (12/18/2014)

 * Add traditional Chinese (zh_TW) language files
 * Fix filter topic to use tags with attributes [issue #30](https://github.com/bueltge/AddQuicktag/issues/30)
 * Update grammar topics [Issue #29](https://github.com/bueltge/AddQuicktag/issues/29)

#### 2.3.3 (06/26/2014)

 * Fix PHP notice on different installs
 * Update french, turkish and german language files
 * Update description, hint on the settings page
 * Order setting works now also on the visual drop down menu
 * Update readme
 * Update screenshots for the new version, possibilities

#### 2.3.2 (06/20/2014)

 * Bugfix Javascript to add quicktags

#### 2.3.1 (06/19/2014)

 * Fix JavaScript error on code_buttons

#### 2.3.0 (06/19/2014)

 * Allow quicktags on edit-comment and quick-edit screen on default
 * Add possibility to remove core quicktags from each post type
 * Add possibility to add enhanced code buttons to mask code and format
 * Rewrite the Im-Export function (now works simple with json)
 * Rewrite the german language file

#### 2.3.0-RC1 (05/22/2014)

 * Use on default all post types with active UI, incl. Custom and Default Post types
 * New settings UI to easier add quicktags to each post type
 * Add Widget area, now it is possible to use quicktags on widgets with WP editor
 * Add brazilian translation
 * Add turkish translation
 * Add possibility to remove default quicktags
 * Changes on settings style, check in MP6 design, WP 3.8
 * Add ukrainian translation
 * Add solution to remove core quicktag, Beta Status
 * Fix TinyMCE Select Box in WordPress 3.9*

#### 2.2.2 (02/09/2013)

 * Add Filter Hook for custom button, see [issue #9](https://github.com/bueltge/AddQuicktag/issues/9)
 * Small check for undefined var on settings page

#### 2.2.1 (13/11/2012)

 * Fix for im/export
 * Add toggle checkboxes for each type

#### 2.2.0

 * Add checkboxes for different post type, use also filter for custom post type
 * Change script on HTML editor, only include buttons, there have an active checkbox
   on options for his post type
 * Add more data in JSON
 * Fix for custom post types; works now also on settings page
 * Change function to add button in html editor Ìtumọ̀ Yorùbá: –> `QTags.addButton()`
 * Update im/export function for use with custom post type
 * Fix settings page on network for WP 3.5

#### 2.1.0

 * Add fix, see [Forum thread ‘array_multisort error’](https://wordpress.org/support/topic/plugin-addquicktag-array_multisort-error#post-2920394)
 * See quicktag button in visual editor, only if an button is active for visual
 * Change hooks for include scripts
 * Add filter for page in backend
 * Add edit comments to use quicktags

#### 2.0.4

 * Add fix for use older settings from previous versions
 * Unicode fix for upload XML file

#### 2.0.3

 * Add Filter ‘addquicktag_post_types’ for use the plugin also on custom post types
 * Update readme and add an example for this filter; also an Gist for use faster

#### 2.0.2

 * change hook for including styles and scripts for compatibility in WP 3.4

#### 2.0.1

 * Bugfix on JS for WP smaller 3.3; use quickbuttons clean on html-editor with core-
   buttons

#### 2.0.0

 * complete redesign, new code from the first line
 * add function for add quicktags on html and visual editor
 * works also on Multisite Network
 * new settings page
 * add fallback in JS to use this new version also in WordPress smaller 3.3

#### v1.6.5 (02/02/2011)

 * changes for admin-hints
 * kill php warnings on debug-mode

#### v1.6.4 (12/22/2010)

 * small changes for deprecated WP functions

#### v1.6.3 (16/06/2009)

 * Add belorussian language file, thanks to Fat Cow

Find out about older changes on the [the official website](https://bueltge.de/wp-addquicktags-de-plugin/120/#historie)!

## Àkójọpọ̀ Meta

 *  Ẹ̀yà **2.6.1**
 *  Ìgbàgbọ́hùn tó kẹ́yìn **ọdún 5 sẹ́yìn**
 *  Àwọn ìgbéwọlẹ̀ tó ṣiṣẹ́ **100,000+**
 *  Ẹ̀yà WordPress ** 4.0 tàbí ju bẹ́ẹ̀ lọ **
 *  Dánwò dé **5.7.15**
 *  Àwọn èdè
 * [Dutch](https://nl.wordpress.org/plugins/addquicktag/), [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/addquicktag/),
   [English (UK)](https://en-gb.wordpress.org/plugins/addquicktag/), [English (US)](https://wordpress.org/plugins/addquicktag/),
   [French (France)](https://fr.wordpress.org/plugins/addquicktag/), [Galician](https://gl.wordpress.org/plugins/addquicktag/),
   [German](https://de.wordpress.org/plugins/addquicktag/), [Italian](https://it.wordpress.org/plugins/addquicktag/),
   [Japanese](https://ja.wordpress.org/plugins/addquicktag/), [Polish](https://pl.wordpress.org/plugins/addquicktag/),
   [Russian](https://ru.wordpress.org/plugins/addquicktag/), [Spanish (Chile)](https://cl.wordpress.org/plugins/addquicktag/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/addquicktag/), [Spanish (Venezuela)](https://ve.wordpress.org/plugins/addquicktag/),
   àti [Turkish](https://tr.wordpress.org/plugins/addquicktag/).
 *  [Túmọ̀ sí èdè rẹ](https://translate.wordpress.org/projects/wp-plugins/addquicktag)
 * Àwọn àmì
 * [add buttons](https://yor.wordpress.org/plugins/tags/add-buttons/)[button](https://yor.wordpress.org/plugins/tags/button/)
   [editor](https://yor.wordpress.org/plugins/tags/editor/)[quicktag](https://yor.wordpress.org/plugins/tags/quicktag/)
   [tinyMCE](https://yor.wordpress.org/plugins/tags/tinymce/)
 *  [Ìwòye Tó Péye](https://yor.wordpress.org/plugins/addquicktag/advanced/)

## Àwọn ìbò

 4.7 lára àwọn ìràwọ̀ 5.

 *  [  37 5-star reviews     ](https://wordpress.org/support/plugin/addquicktag/reviews/?filter=5)
 *  [  4 4-star reviews     ](https://wordpress.org/support/plugin/addquicktag/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/addquicktag/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/addquicktag/reviews/?filter=2)
 *  [  2 1-star reviews     ](https://wordpress.org/support/plugin/addquicktag/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/addquicktag/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/addquicktag/reviews/)

## Àwọn Olùkópa

 *   [ Frank Bueltge ](https://profiles.wordpress.org/bueltge/)
 *   [ Syde GmbH (formerly Inpsyde) ](https://profiles.wordpress.org/inpsyde/)

## Ìrànlọ́wọ́

Nǹkan wà tí o fẹ́ sọ? Ṣé o nílò ìrànlọ́wọ́?

 [Wo àpéjọ ìrànlọ́wọ́](https://wordpress.org/support/plugin/addquicktag/)

## Ṣe ìtọrẹ

Ṣé o fẹ́ ṣe àtìlẹ́yìn fún ìlọsíwájú plugin yìí?

 [ Ṣe ìtọrẹ sí plugin yìí ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6069955)