內容目錄
前言介紹
- 這款 WordPress 外掛「HUEM: Huge Upload Enabler, mostly」是 2016-10-24 上架。
- 目前有 20 個安裝啟用數。
- 上一次更新是 2017-01-03,距離現在已有 3043 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 4.6 以上版本才可以安裝。
- 有 1 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
usability | right click | context menu | upload limit | content aware menu |
內容簡介
HUEAM 是一個 WordPress 外掛,儘管不會干擾 WordPress 的運作,仍會試圖對其進行改進。安裝此外掛後,您不會立即注意到任何變化,但這些功能已默默啟用。
智慧內容選單
分塊上傳以繞過 php.ini 和 .htaccess 上傳限制。
我們正在考慮增加更多令人興奮的改進,您將能輕鬆地啟用或禁用它們。
智慧內容選單
在站點預覽模式中右鍵點擊任何元素,現在會出現一個漂亮的內容選單,可直接帶您到適當的管理頁面進行編輯。您(或您的客戶)永遠不用再問在哪裡找到該功能了。這將為您節省數千次滑鼠點擊。
專業提示:如果您想要查看瀏覽器本機上下文菜單,只需在右鍵點擊時按住 CTRL。
專業提示 2:您可以使用過濾器 wpa_context_menu 擴展上下文菜單。
專業提示 3:像這樣在您的 wp-config.php 文件中禁用上下文菜單:
define('WPAWESOME_DISABLE_CONTEXT_MENUS', true);
巨型上傳
通過使 WordPress 將文件分段上傳,您現在可以通過標準的 WordPress 用戶界面上傳龐大的文件。不再需要編輯 .htaccess 文件或 php.ini 文件。上傳的文件將被分成大小為 1.9 MB 的塊。這些塊存儲在臨時文件夾中,直到上傳所有塊為止。那時,插件將再次將所有塊合併為一個文件。
專業提示:您可以通過定義 WPAWESOME_UPLOAD_LIMIT 常量來覆蓋最大上傳大小。
define('WPAWESOME_UPLOAD_LIMIT', '10000000'); //10 MB 上傳限制
專業提示 2:像這樣在您的 wp-config.php 文件中禁用巨型上傳:
define('WPAWESOME_DISABLE_HUGE_UPLOADS', true);
按 3 次 Esc 登錄
當您未登錄時按三次 ESC,將直接帶您到登錄頁面。這樣,您就不必記住提示您登錄的頁面的 URL。登錄後,您可以右鍵單擊文章(或小工具或評論)進行編輯。
專業提示:像這樣在您的 wp-config.php 文件中禁用快速登錄:
define('WPAWESOME_DISABLE_FAST_LOGIN', true);
貢獻
模塊作者
通過添加過濾器add_filter('wpa_context_menu', 'my_context_menu', 10, 2),可以輕鬆擴展插件。 function my_context_menu 必須接受 $menu 和 $items 參數。檢查 $items 以檢測用戶單擊的元素。您可以查看標記名稱、類名、元素 ID 等。如果要添加菜單項,您只需修改 $menu 陣列結構以添加自己的選擇即可。
最佳的貢獻方式是您的模塊或主題與 HUEAM 整合,或者您提供一個 patch。補丁應該修復錯誤、改善用戶體驗或添加功能。除非另一個模塊非常受歡迎,否則請勿提供使 WP Awesome 支援其他模塊的補丁。
如果您想貢獻補丁、翻譯、提供錯誤報告或以其他方式貢獻,還有一個GIT 庫和 wiki。
翻譯人員
該插件目前只有很少的可翻譯字串,但有幾個。如果您想貢獻翻譯,有兩種方法:
使用我們的 bitbucket 庫進行拉取請求,附上您的翻譯檔案
原文外掛簡介
HUEAM is a plugin that tries to make improvements to WordPress, while not interfering with the way WordPress works. When you install the plugin, you will not notice any immediate changes – but these features have been silently enabled.
Smart Context Menus
Chunked uploads to bypass php.ini and .htaccess upload limitations.
We’re looking into more exciting improvements to add, and you will be able to easily enable or disable them.
Smart Context Menus
Right clicking any element in site preview mode now will render a nice context menu – that will take you directly to the appropriate admin page for editing. You (or your customer) will never again have to ask where to find the feature. It will save you thousands of mouse clicks.
Pro tip: If you want to see the browser native context menu, simply hold CTRL while right clicking.
Pro tip 2: You can extend the context menu by using the filter wpa_context_menu.
Pro tip 3: Disable the context menus in your wp-config.php file like this:
define('WPAWESOME_DISABLE_CONTEXT_MENUS', true);
Huge uploads
By making WordPress upload files in multiple chunks, you can now upload huge files through the standard WordPress user interface. No more editing of .htaccess files, or php.ini files. The uploaded file will be split into chunks that are 1.9 MB large. The chunks are stored in the temp folder – until all chunks have been uploaded. At that time – the plugin will combine all the chunks into one file again.
Pro tip: You can override the maximum upload size by defining the WPAWESOME_UPLOAD_LIMIT constant.
define('WPAWESOME_UPLOAD_LIMIT', '10000000'); // 10 MB upload limit
Pro tip 2: Disable the context menus in your wp-config.php file like this:
define('WPAWESOME_DISABLE_HUGE_UPLOADS', true);
3 * Esc to login
Clicking ESC three times, when you’re not logged in – will take you directly to the login page. This way, you won’t have to remember the URL of the page that prompted you to login. You’ll be there instantly after login, and then you can right click the article (or widget or comment) to edit it.
Pro tip: Disable the context menus in your wp-config.php file like this:
define('WPAWESOME_DISABLE_FAST_LOGIN', true);
Contribute
Module Authors
The plugin can be easily extended by adding a filter add_filter( 'wpa_context_menu', 'my_context_menu', 10, 2). The function my_context_menu must accept $menu and $items arguments. $items is inspected to detect which element the user clicked. You can look at tag names, class names, element ids and more. If you want to add menu items, you’ll simply modify the $menu array structure to add your own choices.
The best way to contribute, is if your module or theme integrates with HUEAM or if you contribute a patch. Patches should fix bugs, improve the user experience or add features. Please don’t provide patches that make WP Awesome support other modules, unless that other module is extremely popular.
There’s a GIT repository and wiki too if you want to contribute a patch, a translation, provide bug reports or in any other way contribute.
Translators
The plugin currently has very few translatable strings, but there are a couple. If you want to contribute with translations there are two ways:
Send a pull request to our bitbucket repository, with your translation file in the Languages/ folder.
Upload your pot-file to https://bitbucket.org/wpmotor/wpawesome/issues/new and mark it as a proposal. We support translation files, but have only a very few translations available at the moment.
Recommended Settings
There are no configuration needed to use this plugin. Just install it, and you are ready. Setting defaults can be configured in wp-config.php, and they can be overridden in the WP Awesome options panel.
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「HUEM: Huge Upload Enabler, mostly」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
No Right Click Images 》這個「No Right Click Images Plugin」使用 JavaScript 技術改變了圖片的右鍵點擊功能,以禁用右鍵選單。它只禁止了圖片上的右鍵選單,其他的右鍵操作,如連...。
Right Click Disable OR Ban 》這是一個相當常被攝影網站使用的外掛功能,作者希望能阻止使用者在他的網站上複製他們的圖像和內容,所以只需安裝這個外掛,然後參考以下問題的解答即可。, ...。
No Copy 》No Copy 外掛程式是一個上傳並啟用的外掛程式,它可以防止訪客在您的部落格上使用右鍵點擊來開啟內容選單。這應該可以防止多數使用者進行抄襲。不過,仍然有...。
Mouse And Keyboard Disable 》「Mouse And Keyboard Disable」外掛協助使用者在所有瀏覽器中禁用滑鼠右鍵及鍵盤複製(Ctrl+C)、貼上(Ctrl+V)、全選(Ctrl+A)等功能,藉此避免使用者複製您網...。
Custom right click menu 》自訂右鍵選單外掛可以讓你建立一個上下文選單,而不是封鎖右鍵以保護版權和其他問題。, 安裝和用法, , 新增並啟用該外掛, 輸入所需欄位數量, 。
Right Click Menu (Like hayatikodla.net) 》展示網址:https://hayatikodla.net, 這個 WordPress 外掛程式可以讓使用者在你的網站上使用右鍵點擊,彈出一個特殊的選單。, 安裝此外掛後,在「外觀/選單/...。
Admin Right Click Menu 》這個外掛非常適用於設計中不適合使用預設的管理工具列的網站。很多網站擁有者/客戶會透過同一部用於管理的筆電展示網站給客戶,因此黑色的工具列會影響使用體...。