前言介紹
- 這款 WordPress 外掛「F4 Simple White Label」是 2019-11-14 上架。
- 目前有 200 個安裝啟用數。
- 上一次更新是 2024-03-28,距離現在已有 401 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 5.2 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 7.0 以上。
- 有 1 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
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 ' ';
});
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 ' ';
});
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 |
延伸相關外掛(你可能也想知道)
Custom Login Page Customizer 》Custom Login Page Customizer 外掛可讓您輕鬆地從 WordPress Customizer 自訂您的登入頁面!在儲存之前,您可以預覽自訂的登入頁面變更!太棒了,對吧?, , ...。
White Label – WordPress Custom Admin, Custom Login Page, and Custom Dashboard 》您可以使用我們的白領 WordPress 外掛為客戶打造自訂管理體驗。您可以建立自訂的登入頁面、建立自訂的儀表板元素,修改管理員選單等等。, , 建立自訂管理體驗...。
Login Page Styler | Custom Login | Custom WP Admin Login Page | Admin Security | Admin Protection | Login Page Customizer | Admin Login | Login Security | Login Redirect | Theme Login | Login Menu | Login Form | Admin Dashboard | Change Login Logo | Login Branding | Login Protection | Wp-Admin Login 》Login Page Styler 是一個登錄頁面美化、管理員登錄、自定義登錄模板和登錄安全插件。他能夠保護您的網站免受登錄暴力攻擊,並為WordPress會員用戶提供登錄驗...。
Customize WordPress Login and Registration Page – WPOrLogin 》WPOrLogin 可讓您輕鬆地定制管理員登入頁面,以滿足您的需求。, 此外掛支援 WordPress 的所有集成功能,並可確保登出鏈結正常運作。, 若未上傳任何標誌,則會...。
Easy Login Styler – White Label Admin Login Page for WordPress 》使用最簡單的 WordPress 白標登入頁面,只需上傳標誌和背景圖像就可以輕鬆自定義。就是這樣!你將在不到 5 秒鐘的時間內擁有全新的管理員登入頁面,並帶有自...。
Loginfy – Custom Login Page Customizer 》總結:LoginFY 外掛讓使用者能夠輕鬆自訂他們的 WordPress 登入頁面,為管理者和使用者提供獨特且個人化的體驗。這個外掛提供了一套完整的功能,以增強登入頁...。
Login | Login Page | Login Logo | Rename Login Page | Custom Login Page | Temporary Users | Rebrand Login | Login Captcha 》WordPress 可以讓您自定義網站的所有前端,但 WordPress 登入頁面預設外觀呆板且不專業。請利用 Feather Login Page 對於您的登入頁面進行自定義,只需花費幾...。
Login Page Customizer – Customizer Login Page, Admin Page, Custom Design 》自定義登錄頁面外掛可以讓您在登錄頁面上即時查看所有更改,並非常輕鬆地編輯它們。您可以在WordPress管理員登錄頁面上做出很多更改,如自定義登錄頁面標誌、...。
Customize Login Page 》「Customize Login Page」是一款簡單的外掛程式,它能讓你設計自己的 WordPress 登入頁面,加上自訂的標誌和網站風格。。
CLP – Custom Login Page by NiteoThemes 》Custom Login Page 外掛允許您自定 WordPress 登入頁面上的任何重要元素。它使用功能強大的自訂工具進行實時變更。更改標誌、圖形背景、字體或只是簡單的微調...。
Custom Login Page by SeedProd 》使用 SeedProd 的 Custom Login Page 外掛程式,您可以在幾分鐘內建立自定義的登入頁面。, , 現在升級到 Custom Login Page 專業版! », , 免費版功能,...。
WP Custom Login 》此外掛專為希望在登入頁面中包含標頭及頁腳的使用者而設計。您也可以更改設計風格。只需在您的佈景主題目錄下建立 wp-custom-login.css 檔案即可。。
Custom Login Css 》本外掛針對希望將頁首和頁尾組件加入登入頁面的使用者所設計。您也可以更改設計。, 連結:作者網站。
Creative WP Login Page 》這個外掛可以幫助你讓你的登入頁面更美觀。, 該外掛的功能包括為登入框添加陰影、使用不同的樣式設計登入頁面、更改字體等等。, 未來也會陸續加入其他的功能...。
Webriti Custom Login 》Webriti Custom Login 外掛讓您可以自訂預設的登入頁面。使用此外掛,您可以加入自訂的標誌及背景色。對於希望將品牌擺在客戶面前的網站開發人員來說,這是一...。