前言介紹
- 這款 WordPress 外掛「Insert Special Characters」是 2019-08-29 上架。
- 目前有 4000 個安裝啟用數。
- 上一次更新是 2025-04-23,距離現在已有 11 天。
- 外掛最低要求 WordPress 6.5 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 7.4 以上。
- 有 8 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
10up | jeffpaul | johnwatkins0 | adamsilverstein |
外掛標籤
Omega | symbols | Character Map | character inserter | special characters |
內容簡介
曾經在 WordPress 區塊編輯器(Gutenberg)中想要插入特殊字元卻突然想念經典編輯器和特殊字元插入器嗎?不用再期待了,插入特殊字元外掛現已來解您的發佈煩惱!
註釋:您可以透過 ctrl/cmd + o 鍵盤快速鍵來顯示 popover。
開發將會在 GitHub 存儲庫進行。
技術備註
需要 PHP 7.4 以上版本。
需要 WordPress 5.7+。
在 GitHub 存儲庫中歡迎問題和拉取請求。
擴充功能
開發人員可以透過insertspecialcharacters-characters JavaScript(wp.hooks)篩選器來控制可用的標籤和字元集。
例如,要創建只提供貨幣符號的字元插入器:
wp.hooks.addFilter(
'insertspecialcharacters-characters', // 篩選器名稱。
'mycallback', // 我們的回調命名空間。
function( component ) { // 回調函數。
// 返回要顯示的類別和字元。
// 數據結構為:{ 類別: [ 字元數據 ], 類別2: ... }
return {
"貨幣": [
{ "entity": "$", "hex": "", "name": "Dollar Sign", "char": "$" },
{ "entity": "€", "hex": "AC;", "name": "Euro Sign", "char": "€" },
{ "entity": "¢", "hex": "A2;", "name": "Cent Sign", "char": "¢" },
{ "entity": "£", "hex": "A3;", "name": "Pound Sign", "char": "£" },
{ "entity": "¥", "hex": "A5;", "name": "Yen Sign", "char": "¥" },
]
};
}
);
原文外掛簡介
Ever wanted to add a special character while working within the WordPress block editor (Gutenberg) and suddenly find yourself longing for the days of the Classic Editor and the Special Character inserter? Well long no more, the Insert Special Characters plugin is here to ease your publishing woes!
Note: you can display the popover via the ctrl/cmd + o keyboard shortcut.
Development takes place in the GitHub repository.
Technical Notes
Requires PHP 7.4+.
Requires WordPress 6.6+
Issues and Pull requests welcome in the GitHub repository.
Extending
To control the available tabs and characters, developers can filter the data set using the insertspecialcharacters-characters JavaScript (wp.hooks) filter.
For example, to create a character inserter that only provides currency symbols:
wp.hooks.addFilter(
'insertspecialcharacters-characters', // The filter name.
'mycallback', // Our callback namespace.
function( component ) { // The callback function.
// Return the categories/characters to display.
// The data structure is: { category: [ character data ], category2: ... }
return {
"Currency": [
{ "entity": "$", "hex": "", "name": "Dollar Sign", "char": "$" },
{ "entity": "€", "hex": "AC;", "name": "Euro Sign", "char": "€" },
{ "entity": "¢", "hex": "A2;", "name": "Cent Sign", "char": "¢" },
{ "entity": "£", "hex": "A3;", "name": "Pound Sign", "char": "£" },
{ "entity": "¥", "hex": "A5;", "name": "Yen Sign", "char": "¥" },
]
};
}
);
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Insert Special Characters」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0.0 | 1.0.1 | 1.0.2 | 1.0.3 | 1.0.4 | 1.0.5 | 1.0.6 | 1.0.7 | 1.1.0 | 1.1.1 | 1.1.2 | 1.1.3 | trunk |
延伸相關外掛(你可能也想知道)
暫無相關外掛推薦。