[WordPress] 外掛分享: Sukellos Enable Classic Editor

WordPress 外掛 Sukellos Enable Classic Editor 的封面圖片。

前言介紹

  • 這款 WordPress 外掛「Sukellos Enable Classic Editor」是 2022-04-04 上架。
  • 目前有 10 個安裝啟用數。
  • 上一次更新是 2024-10-04,距離現在已有 212 天。
  • 外掛最低要求 WordPress 5.2 以上版本才可以安裝。
  • 外掛要求網站主機運作至少需要 PHP 版本 7.2 以上。
  • 尚未有人給過這款外掛評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

sukellos |

外掛標籤

admin | option | admin builder | custom admin pages | custom admin panel |

內容簡介

使用 Sukellos Enable Classic Editor 外掛可以在文章類型與小工具中切換回傳統的編輯器。

本外掛與其他 Sukellos 工具的 WordPress 外掛整合,將它們的設定聚合在一個方便的中央管理面板中。

在此瞭解更多 Sukellos 外掛資訊。

Admin Builder Basic

每個 Sukellos 外掛都整合了 Sukellos 框架和一個名為 Admin Builder 的基本功能。

一分鐘 WordPress 外掛開發

Sukellos 框架旨在加速 WordPress 外掛的開發。

一旦安裝到 WordPress 中,由於其物件導向結構,使用起來立即而直觀,透過包含和繼承方式等排除了與 WordPress 整合的所有限制,讓您專注於功能邏輯的核心。

下載並查閱我們的文件,了解如何使用 Sukellos 框架更輕鬆地完成工作。

簡易管理頁面,大幅優化選項

Admin Builder 是 Sukellos 框架中嵌入的主要功能,它可讓您在 WordPress 儀表板中輕鬆地建立強大且美麗的自訂管理頁面。

Admin Builder 可以非常簡單地包含在您自己的外掛中,以幾行程式碼建立管理頁面。它可以輕鬆地處理表單的實現、字段寫入,讓您更專注於配置邏輯,非常省心。

Admin Builder 是一種強大的方式來創建管理 WordPress 選項的配置頁面。

例如:

// 管理頁面
$admin_page = Admin_Builder::instance()->create_admin_page(
array(
'name' => 'My admin page',
'id' => 'my_admin_page',
'desc' => __( 'My admin page description', 'text_domain' ),
)
);

// 建立文本選項欄位
$admin_page->create_option(
array(
'type' => Item_type::TEXT,
'id' => 'text_option',
'name' => __( 'Text', 'text_domain' ),
'desc' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
)
);

許多標準字段可用:

核取方塊
自訂數據上的多重選擇(核取方塊和下拉式選單)
內容
標頭
單選按鈕
文本
文本區域
上傳

Admin Builder 設計供開發人員使用,許多掛鉤可用,以允許完全自定義樣式和行為。

下載 Admin Builder 範例外掛,並參閱我們的文件,以獲取許多複製/貼上的範例。

升級至 Admin Builder Pro

在此瞭解更多 Sukellos Admin Builder Pro 資訊。

更多字段和功能

升級至 Pro 版本以獲得更多的字段類型…

AJAX 按鈕(及功能)
代碼(JS、CSS、SCSS)
調色盤
日期選擇器
EDD 授權(Easy Digital Downloads)
啟用
檔案上傳
畫廊
筆記
數字滑桿

原文外掛簡介

Use Sukellos Enable Classic Editor to switch back to classic editor in post types and widgets.
This plugin integrates with other Sukellos Tools WordPress plugins to group their settings in a convenient and centralized administration panel.
Learn more about Sukellos plugins here.
Admin Builder Basic
Each Sukellos plugin integrates Sukellos Framework, and the Basic version of a feature called Admin Builder.
WP Plugin Development In A Minute
The Sukellos framework was designed to speed up the development of WordPress plugins.
Once installed in WordPress, its use is immediate and intuitive thanks to its object-oriented structure, by using inclusion and inheritance. It allows you to overcome all the constraints of integration with WordPress, and to focus on the essentials of your functional logic.
Get the basic plugin offered, and consult our documentation to know how to use the Sukellos Framework to make your work easier.
Easy Admin Pages. Magnify Options
The Admin Builder is the main features embedded in Sukellos Framework. It allows to easily build powerful and beautiful custom admin pages in WordPress Dashboard.
The Admin Builder can be included very simply in your own plugin to create an administration page in a few lines of code. This takes the hassle out of your hands, making high-level designs possible with very little development skill. No need to worry about implementing the form, handling writing fields, just focus on your configuration logic.
Admin Builder is a powerful way to create configuration pages to manage WordPress options.
Example:
// Admin page.
$admin_page = Admin_Builder::instance()->create_admin_page(
array(
'name' => 'My admin page',
'id' => 'my_admin_page',
'desc' => __( 'My admin page description', 'text_domain' ),
)
);

// Create a text option field
$admin_page->create_option(
array(
'type' => Item_type::TEXT,
'id' => 'text_option',
'name' => __( 'Text', 'text_domain' ),
'desc' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
)
);

A lot of standard fields are available:

Checkbox
Multiple choices (checkbox and select) on custom data
Content
Header
Radio
Text
Textarea
Upload

Admin Builder is designed to be used by developers. Many hooks are available to allow full style and behavior customization.
Get the Admin Builder Examples plugin, and consult our documentation, to get many examples to copy / paste.
Upgrade to Admin Builder Pro
Learn more about Sukellos Admin Builder Pro here.
More field and features
Upgrade to pro to get more field types…

AJAX button (and feature)
Code (JS, CSS, SCSS)
Color picker
Date picker
EDD Licensing (Easy Digital Downloads)
Enable
File upload
Gallery
Note
Number slider
Select and multiple choices on predefined WordPress data (users, posts, terms, fonts…)
Sortable
WYSIWYG editor

… and allows tabs creation in admin pages.
Creating an AJAX request becomes child’s play.
Enrich Post Types And User Profiles
Take control of custom fields in any type of posts. The creation of Metabox becomes very simple. All the standard fields can also be used, but this time by associating them with any post type, stored as post_meta. Admin Builder allows disabling classical custom fields display. Users can be enriched by adding fields that are directly visible and modifiable in their own profiles. The management of this user_meta is also possible directly in administration pages.
In the same way as for the options, the management of the post_meta and the user_meta is simplified as much as possible. Just a few lines of code are enough.
Automatic CSS Generation. SCSS Support.
In the administration pages, the options can be taken automatically into account in CSS. Each field value can be dynamically associated with a CSS. More complex styles can also be generated from an administration page thanks to the magic method create_css, in a very simple way. Admin Builder allows the use of a code-like configuration field, thanks to the inclusion of the Ace project. This control offers an input area that supports the CSS / SCSS format. This field can be automatically generated and included in the WordPress front end.

各版本下載點

  • 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
  • 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Sukellos Enable Classic Editor」來進行安裝。

(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。


1.0.5 | 1.1.0 | 1.1.1 | 1.1.2 | 1.1.4 | 1.1.6 | 1.1.8 | trunk |

延伸相關外掛(你可能也想知道)

  • WP Admin UI Customize 》, 儀表板, 顯示選項標籤, 輸出 - 元網站, 管理工具列 (Toolbar), 側邊選單 (Side menu), 元箱的管理, 登入畫面, 其他功能, , 這些自訂化都是可以實現的。, , ...。
  • ACF Options For Polylang 》您使用了高級自訂欄位來建立選項頁面,並且安裝了 Polylang 外掛以獲得令人驚嘆的多語言網站嗎?, 可惜的是,Polylang 並不處理 ACF 的選項頁面。這意味著您...。
  • Rel Nofollow Checkbox 》此外掛在插入/編輯連結彈出視窗中,增加了一個簡單的核取方塊,可加入 nofollow 屬性。。
  • WP-RecentComments 》在 WordPress 側邊欄中顯示最新評論。您可以限制評論的數量,設定摘要的最大長度,過濾反向鏈接評論。您還可以啟用或禁用頭像,調整其大小和位置。此外,它還...。
  • Subscription Options 》人們訂閱部落格和其內容最常用的方法是通過 RSS、電子郵件和 Twitter。有些人還會轉載到 Facebook 上。此外掛會在小工具區中放置相關訂閱圖標,讓使用者輸入...。
  • WordPress Mobile Themes 》允許你選擇另一個主題用於手機和平板電腦的用戶。, 可以為手機和平板電腦的用戶設定不同的主題。, 支援的語言:, , 美式英文/en_US (默認), 簡體中文/zh_CN (...。
  • Ajax Dropdowns 》這個外掛可以在同一頁面上使用下拉式選單顯示多種文章類型的內容。下拉式選單可以透過 Ajax、內嵌或重定向查詢文章,並在您的網站前端顯示。, 功能特色, , 無...。
  • Easy Theme Options 》此外掛可新增創建多個網站選項,以定制你的主題或網站。, 特點, 你可輕鬆創建多種欄位類型,例如:, , 文本輸入框, 密碼輸入框, 文字區, 核取方塊, 下拉式選...。
  • Screen Options and Help Show Customize 》這款 WordPress 外掛可設置顯示選項以及幫助選項的設定,還可以設置幾乎所有的默認頁面。, 此外,還可以更改每個使用者角色的顯示。, 支援多站點。, 日本語說...。
  • Options View 》編輯選項和使用者元數據(usermeta)表的內容。, =選項表(Options table)和使用者元數據表(Usermeta table)=, * 解序列化選項表(option table)的值,...。
  • Custom Variables 》透過這個外掛,您可以建立自己的變數及在 WordPress 網站上使用。當您需要更新變數時,這會更加便利。例如,您的聯絡電話在網站上顯示於四個地方。當您需要更...。
  • Menu Maker 》Menu Maker 外掛有助於建立您網站的選單,常常用於創建導覽選單。您可以在 Troidus.com 查詢更新。, 使用說明, 大多數情況下,外掛都很容易上手。但是對於文...。
  • EPOW – Custom Product Options for WooCommerce 》, 試用演示 | 文件 | Facebook 社團, , , EPOW – WooCommerce Custom Product Options 是一個很好用的外掛,可以讓您更輕鬆地新增自定義選項至您的產品。有了...。
  • Options 》此外掛在 options.php 頁面添加了一個「設定 > 選項」鏈接。, 如果您想貢獻,請在github.com上發送拉取請求。, 此外掛由 WordPress 顧問、網頁開發人員和數據...。
  • Xhanch – My Advanced Settings 》Xhanch – 我的進階設定 (由 Xhanch Studio 開發) 是一個提供常見 WordPress 功能但 WordPress 預設並未提供的外掛程式。使用此外掛,您可以利用/啟用/...。

文章
Filter
Apply Filters
Mastodon