Linux 软件免费装
Banner图

BPOTech Custom Quicktags Manager

开发者 wphuebpo
更新时间 2026年8月31日 10:21
PHP版本: 8.0 及以上
WordPress版本: 7.0
版权: GPLv2 or later
版权网址: 版权信息

标签

editor formatting post type custom buttons custom quicktags

下载

1.0.0 1.1.0 1.1.1

详情介绍:

BPOTech Custom Quicktags Manager allows WordPress administrators to create and manage custom Quicktags — quick action buttons that insert custom HTML or text into the editor. Each quicktag can be selectively assigned to specific post types so it only appears where needed. Key Features

安装:

  1. Upload the plugin files to the /wp-content/plugins/bpotech-custom-quicktags-manager directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the 'Plugins' screen in WordPress.
  3. Navigate to BPOTech Custom Quicktags Manager in your WordPress admin menu to start creating and managing your custom quicktags.

屏幕截图:

  • Custom Quicktags are available directly inside the editor toolbar for the selected post types. Authors can quickly insert predefined HTML snippets or content structures, such as highlights and info boxes, without manually writing code. The Quicktags work seamlessly within the supported editors, helping create consistent and reusable content elements.

常见问题:

Does this plugin support Gutenberg?

Yes. Quicktag buttons appear in a dedicated sidebar panel in the Gutenberg Block Editor. Clicking a button inserts the full HTML content as a Custom HTML block.

Does this plugin support the Classic Editor?

Yes. Quicktag buttons are added to both the Classic Text Editor (Code tab) toolbar and the TinyMCE Visual Editor toolbar automatically.

Can I use quicktags on Custom Post Types?

Absolutely. The plugin detects all public post types on your site and lets you choose which ones display each quicktag.

What happens when I uninstall the plugin?

Developer Hooks

This plugin provides several action and filter hooks to allow third-party developers to extend and customize the Quicktags manager without editing the plugin core files.

Filter Hooks

  • bpotech_custom_quicktags_manager_data (array $quicktags) Filters the list of quicktags retrieved from the database before rendering them in the editor or admin list. Example:
add_filter( 'bpotech_custom_quicktags_manager_data', function( $quicktags ) { // Dynamically inject a custom quicktag from code $quicktags[] = array( 'id' => 'custom_code_block', 'label' => 'Code Block', 'start_tag' => ' ', 'end_tag' => '', 'post_types' => array( 'post' ), 'editors' => array( 'gutenberg', 'text' ) ); return $quicktags; } ); * bpotech_custom_quicktags_manager_post_types (array $post_types) Filters the list of public post types displayed on the settings screen. Example: add_filter( 'bpotech_custom_quicktags_manager_post_types', function( $post_types ) { // Remove 'attachment' or add custom ones unset( $post_types['attachment'] ); return $post_types; } ); * bpotech_custom_quicktags_manager_editors (array $editors) Filters the list of editors displayed in the settings form checkboxes. * bpotech_custom_quicktags_manager_default_data (array $default_tags) Filters the initial default quicktags set on plugin activation or reset.

Action Hooks

  • bpotech_custom_quicktags_manager_admin_form_bottom (array|null $edit_tag) Fires at the bottom of the quicktag creation/edit form. Useful for adding custom input fields. Example:
add_action( 'bpotech_custom_quicktags_manager_admin_form_bottom', function( $edit_tag ) { $note = $edit_tag ? get_option( 'qt_note_' . $edit_tag['id'], '' ) : ''; echo ' '; echo ' Developer Note'; echo ' '; echo ''; } ); * bpotech_custom_quicktags_manager_after_save_tag (array $new_tag, array $all_tags, bool $is_new) Fires after a quicktag is saved or updated. You can use this to save custom form inputs. Example: add_action( 'bpotech_custom_quicktags_manager_after_save_tag', function( $new_tag, $all_tags, $is_new ) { if ( isset( $POST['qt_dev_note'] ) ) { update_option( 'qt_note' . $new_tag['id'], sanitize_text_field( wp_unslash( $_POST['qt_dev_note'] ) ) ); } }, 10, 3 ); * bpotech_custom_quicktags_manager_after_delete_tag (string $tag_id, array $updated_tags) Fires after a quicktag is deleted. Useful for clearing out custom metadata linked to the deleted tag ID. Other available actions:
  • bpotech_custom_quicktags_manager_before_save_tag (array $new_tag, bool $is_new)
  • bpotech_custom_quicktags_manager_before_delete_tag (string $tag_id)
  • bpotech_custom_quicktags_manager_reset_defaults (array $default_tags)

更新日志:

1.0.0