[WordPress] 外掛分享: F4 Simple White Label

WordPress 外掛 F4 Simple White Label 的封面圖片。

前言介紹

  • 這款 WordPress 外掛「F4 Simple White Label」是 2019-11-14 上架。
  • 目前有 200 個安裝啟用數。
  • 上一次更新是 2025-12-15,距離現在已有 72 天。
  • 外掛最低要求 WordPress 5.2 以上版本才可以安裝。
  • 外掛要求網站主機運作至少需要 PHP 版本 7.0 以上。
  • 有 1 人給過評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

faktorvier |

外掛標籤

login | favicon | login page | whitelabel | White Label |

內容簡介

使用F4 Simple White Label,您可以更改登錄圖像、在管理員條中添加自定義徽標以及更改管理員頁腳文字。

目前,這只能通過一些易於使用的鉤子來實現。我們計劃在 WordPress 後端添加選項頁面,以便您可以在不使用任何代碼的情況下更改以上所有內容。

使用方法

您可以將以下鉤子添加到您的佈景主題的 functions.php 中。

將favicon添加到登錄頁面和後端:

add_filter('F4/SWL/admin_favicon', function() {
return 'url-to-your-favicon.ico';
});

更改登錄頁面圖像:

add_filter('F4/SWL/login_image', function() {
return 'url-to-your-login-image.png';
});

您還可以像這樣更改 href、link 文本、圖像 alt 文本:

add_filter('F4/SWL/login_image_href', function() {
return 'https://www.f4dev.ch';
});

add_filter('F4/SWL/login_image_link_text', function() {
return '此 WordPress 由 FAKTOR VIER 提供動力';
});

add_filter('F4/SWL/login_image_alt', function() {
return 'FAKTOR VIER 徽標';
});

如果需要,您可以像這樣添加自定義內嵌樣式到圖像中:

add_filter('F4/SWL/login_image_style', function() {
return 'width: 50px; height: 50px;';
});

在管理員條中添加自定義徽標:

add_filter('F4/SWL/admin_bar_logo', function() {
return 'url-to-your-admin-bar-logo.png';
});

您還可以像這樣更改 href、徽標 alt 文本:

add_filter('F4/SWL/admin_bar_logo_href', function() {
return 'https://www.f4dev.ch';
});

add_filter('F4/SWL/admin_bar_logo_alt', function() {
return 'FAKTOR VIER 徽標';
});

如果需要,您可以像這樣添加自定義內嵌樣式到徽標中:

add_filter('F4/SWL/admin_bar_logo_style', function() {
return 'height: 20px; margin: 8px 0;';
});

如果您有使用淺色主題的用戶,您可以為其定義不同的徽標。如果您不使用此鉤子,則在所有主題中都使用 admin_bar_logo 徽標:

add_filter('F4/SWL/admin_bar_logo_light', function() {
return 'url-to-your-admin-bar-logo-light.png';
});

更改後端頁腳文字:

add_filter('F4/SWL/admin_footer_text', function() {
return '<span id="footer-thankyou">感謝您使用 WordPress。</span>';
});

add_filter('F4/SWL/admin_footer_update_text', function() {
return '版本 5.3';
});

功能概述

將favicon添加到登錄頁面和後端
更改登錄頁面圖像
在管理員條中添加自定義徽標
更改後端頁腳文字
易於使用
輕巧且優化
100%免費!

計劃功能

在 WordPress 後端中配置所有內容,無需代碼

原文外掛簡介

With F4 Simple White Label you can change the login image, add a custom logo to the admin bar and change the admin footer texts.
Currently this is only possible with a few easy to use hooks. We plan to add an options page to the WordPress backend, so you can change all the above mentioned without using a single line of code.
Usage
You can add the following hooks to the functions.php of your theme.
Add favicon to login page and backend:
add_filter('F4/SWL/admin_favicon', function() {
return 'url-to-your-favicon.ico';
});

Change the login page image:
add_filter('F4/SWL/login_image', function() {
return 'url-to-your-login-image.png';
});

You can also change the href, link text, image alt text like this:
add_filter('F4/SWL/login_image_href', function() {
return 'https://www.f4dev.ch';
});

add_filter('F4/SWL/login_image_link_text', function() {
return 'This WordPress is powered by FAKTOR VIER';
});

add_filter('F4/SWL/login_image_alt', function() {
return 'FAKTOR VIER logo';
});

If needed you can add custom inline styles to the image:
add_filter('F4/SWL/login_image_style', function() {
return 'width:50px; height:50px;';
});

Add a custom logo to the admin bar:
add_filter('F4/SWL/admin_bar_logo', function() {
return 'url-to-your-admin-bar-logo.png';
});

You can also change the href, logo alt text like this:
add_filter('F4/SWL/admin_bar_logo_href', function() {
return 'https://www.f4dev.ch';
});

add_filter('F4/SWL/admin_bar_logo_alt', function() {
return 'FAKTOR VIER logo';
});

If needed you can add custom inline styles to the logo:
add_filter('F4/SWL/admin_bar_logo_style', function() {
return 'height:20px; margin:8px 0;';
});

If you have users that like to use the light color theme, you can define a different logo for that. If you dont use this hook, the admin_bar_logo logo us used for all themes:
add_filter('F4/SWL/admin_bar_logo_light', function() {
return 'url-to-your-admin-bar-logo-light.png';
});

Change the backend footer texts:
add_filter('F4/SWL/admin_footer_text', function() {
return 'Thank you for creating with WordPress.Get';
});

add_filter('F4/SWL/admin_footer_update_text', function() {
return 'Version 5.3';
});

Features overview

Add favicon to login page and backend
Change the login page image
Add a custom logo to the admin bar
Change the backend footer texts
Easy to use
Lightweight and optimized
100% free!

Planned features

Everything configurable in the backend without a single line of code

各版本下載點

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

(建議使用方法二,確保安裝的版本符合當前運作的 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.0.8 | 1.0.9 | trunk | 1.0.10 | 1.0.11 | 1.0.12 |

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

  • Branda – White Label & Branding, Free Login Page Customizer 》使用 Branda,這個獨特的免費白牌 WordPress 外掛,自定每個 WordPress 網站的各個方面,以符合您的品牌風格。透過轉換控制台、自訂系統(預設)電子郵件、快...。
  • AGCA – Custom Dashboard & Login Page 》r />, 這個外掛可以讓你輕鬆地微調 WordPress 管理面板、登錄頁面、管理選單、管理列等等。, , 管理列:隱藏或更改管理列項目,從管理列中刪除 WordPress 的...。
  • White Label – WordPress Custom Admin, Custom Login Page, and Custom Dashboard 》您可以使用我們的白領 WordPress 外掛為客戶打造自訂管理體驗。您可以建立自訂的登入頁面、建立自訂的儀表板元素,修改管理員選單等等。, , 建立自訂管理體驗...。
  • UiPress lite | Effortless custom dashboards, admin themes and pages 》UiPress 是一個完整的解決方案,可定制您的 WordPress 管理員使用體驗。, 從自定義控制台、個人資料頁面到整個管理員框架,uiBuilder 可以應有盡有。預製的直...。
  • Slate Admin Theme 》Slate 為您的 WordPress 管理區提供乾淨、簡潔的設計。, 我們的目標是簡化視覺設計,並將重點放在內容撰寫體驗上。, 如果您喜歡 Slate ,請考慮在 WordPress ...。
  • Ultimate Client Dash 》h your own brand name throughout the plugin, Create a custom video tutorial section for your clients, Show or hide the WordPress toolbar for specif...。
  • Easy Login Styler – White Label Admin Login Page for WordPress 》使用最簡單的 WordPress 白標登入頁面,只需上傳標誌和背景圖像就可以輕鬆自定義。就是這樣!你將在不到 5 秒鐘的時間內擁有全新的管理員登入頁面,並帶有自...。
  • Client Portal : SuiteDash Direct Login 》SuiteDash:一站式商務軟體, 前往網站 >> SuiteDash.com 是 SuiteDash 的官方網站,它是一個全方位的 SaaS 工具,能滿足客戶門戶、CRM、銷售渠道、約會...。
  • Admin Page Spider 》在管理列中取得網站所有頁面和文章的菜單!無需在儀表板和網頁之間來回跳轉,即可跳轉到任何頁面。輕鬆訪問編輯鏈接和每個頁面,無需搜索。節省大量不必要的...。
  • Admin Branding and Tweaks 》這個外掛讓您可以輕鬆控制WordPress管理介面以及登入畫面的某些微調。, 啟用外掛之後,一個名為"代理品牌"的新菜單項目將被添加到"設定"菜單下面。, 功能列表...。
  • Branded Login Screen 》Branded Login Screen 外掛的功能如下:, , 全螢幕背景圖片, 使用自己的標誌圖片取代 WordPress 標誌, 登入表單位置:左、中、右 / 上、中、下, 登入表單響應...。
  • WPShapere Lite 》WPShapere WordPress 管理介面主題是 WordPress 的外掛及一個強大的工具,可自訂你的 WordPress 管理介面。它完全可將 WordPress 管理區塊變成白牌。使用 WPS...。
  • Clean WP Admin Theme – Simple design 》這個外掛能打造 WP 後臺的美觀風格,讓使用者可以輕鬆簡化介面,使 WP 後臺看起來更簡潔明瞭。, 只要安裝此外掛,美化介面將自動完成。, 若不滿意預設的主題...。
  • Fiber Admin 》此外掛可提供多項客製化功能,讓您打造專屬的 WordPress 後台管理頁面。, 功能包括:, , 使用您的網站設置,自動設置 WordPress 的白標籤。, 透過多個選項自...。
  • BrandNestor 》BrandNestor針對企業和開發人員,旨在簡化WordPress並根據給定的工作流程為客戶提供訪問。, 功能, , 新增您自己的徽標並刪除WordPress在WordPress管理頁面上...。

文章
Filter
Apply Filters
Mastodon