
內容簡介
Sukellos Login Wrapper 增強了 WordPress 登入功能,提供基本功能(重新導向、前端個人資料簡碼...)
此外掛整合了其他 Sukellos 工具的 WordPress 外掛,以方便且集中的管理面板。
在此了解更多 Sukellos 外掛資訊。
Admin Builder Basic
每個 Sukellos 外掛均整合了 Sukellos Framework,以及名為 Admin Builder 的基本功能。
一分鐘快速開發 WP 外掛
Sukellos Framework 的設計目的是加速 WordPress 外掛的開發速度。
安裝完後即可立即、直觀地使用,其基於物件導向的結構、使用函式庫和繼承關係,可以幫助您克服 WordPress 整合的所有限制,並專注於功能邏輯的本質。
下載提供的基本外掛,並瀏覽我們的文檔,瞭解如何使用 Sukellos Framework 簡化您的工作。
輕鬆建立管理頁面,提升選項功能
Admin Builder 是 Sukellos Framework 的主要功能,它允許開發者在 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 設計用於開發者使用,提供了許多鉤子(Hooks),允許完全自定義樣式和行為。
獲取 Admin Builder 範例外掛,並參閱我們的文檔,可以複製/貼上許多不同的範例。
升級到 Admin Builder Pro
在此瞭解有關 Sukellos Admin Builder Pro 的更多資訊。
更多欄位和功能
升級到 Pro 版本來獲得更多欄位種類...
AJAX 按鈕(和功能)
代碼(JS、CSS、SCSS)
色彩選擇器
日期選擇器
EDD 許可(Easy Digital Downloads)
啟用
文件上傳
圖片庫
注釋
N...
外掛標籤
開發者團隊
原文外掛簡介
Sukellos Login Wrapper enrich the WordPress login with basic features (redirection, front end profile shortcode…)
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.
