跳至主要內容
  • 登入
  • 註冊
WordPress.org

Taiwan 正體中文

  • 佈景主題目錄
  • 外掛目錄
  • 最新消息
  • 技術支援
  • 關於我們
  • 團隊
  • 取得 WordPress
取得 WordPress

外掛目錄

  • 我的最愛
  • Beta 版測試
  • 開發者資訊

這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

下載

Sidebar Login

由 Mike Jolley 開發
  • 詳細資料
  • 使用者評論
  • 開發資訊
技術支援

外掛說明

Sidebar Login adds a useful login widget which you can use to login from in the sidebar of your WordPress powered blog.

Once a user logs in they are redirected back to the page they logged in from, rather than the admin panel (this is configurable).

If you’d like to contribute code to the plugin you can do so via GitHub.

If you’d like to contribute a translation, the project is hosted on WordPress.org.

Usage

Simply go to Appearance > Widgets and drag “sidebar login” to the sidebar of your choice. Within the widget are several options you can use for changing the titles or the links displayed to the user.

To use this widget in a template, use the the_widget() function which WordPress provides.

Tags for titles + links

These tags can be used in the widget settings for titles + links and will be replaced at runtime.

  • %username% – logged in users display name
  • %userid% – logged in users ID
  • %firstname% – logged in users firstname
  • %lastname% – logged in users lastname
  • %name% – logged in users firstname + lastname
  • %nicename% – user nice name
  • %admin_url% – url to WP admin
  • %logout_url% – logout url
  • %buddypress_profile_url% – Buddypress Profile URL
  • %bbpress_profile_url% – Buddypress Profile URL
  • %avatar% – User Avatar

Filter Reference

  • sidebar_login_include_css – return false to not include the CSS stylesheet
  • sidebar_login_widget_logged_in_links – An array of links shown when logged in.
  • sidebar_login_widget_logged_out_links – An array of links shown when logged out.
  • sidebar_login_widget_display – Return false to hide the widget.
  • sidebar_login_widget_logged_in_title – The widget title shown when logged in.
  • sidebar_login_widget_avatar_size – The avatar size – defaulted to 38 (thats in px)
  • sidebar_login_widget_logged_out_title – The widget title shown when logged out.
  • sidebar_login_widget_form_args – Arguments for the wp_login_form function.
  • sidebar_login_widget_login_redirect – Redirect URL after login.
  • sidebar_login_widget_logout_redirect – the redirect after logging out.
  • sidebar_login_widget_register_url – The URL for registration links.
  • sidebar_login_widget_lost_password_url – The URL for lost password links.
  • sidebar_login_widget_wp_login_form – The HTML of the Login form.

Action Reference

  • sidebar_login_widget_start – Fired before the widget.
  • sidebar_login_widget_{logged_in || logged_out}_content_start – Fired before the widget content.
  • sidebar_login_widget_before_{logged_in || logged_out}_links – Fired before the links.
  • sidebar_login_widget_after_{logged_in || logged_out}_links – Fire after the links.
  • sidebar_login_widget_{logged_in || logged_out}_content_end – Fired after the widget content.
  • sidebar_login_widget_end – Fired after the widget.

Notes

  • Due to AJAX not working across different domains (see same_origin_policy), AJAX logins will be disabled if your site it non-SSL, but the FORCE_SSL_ADMIN constant is set to true. Instead it will fallback to a traditional POST.

螢幕擷圖

  • The widget when logged in
  • The widget when logged out
  • Widget settings

使用者評論

Easy to apply Widget and GDPR compliance

phlogotheel 2022 年 11 月 13 日
Easy to implement. Some minor custom css work done and voila great result. I like that the widget does not log something. It seems fully GDPR compliant. Great Job! BR Peter

Hace lo que necesitaba

javigandia 2022 年 3 月 8 日
Me ha ahorrado mucho tiempo. Muchas gracias funciona perfectamente con mi tema y con la última versión de Wordpress.

Ez and quick setup – well documented – Hooks yeah!

AITpro 2021 年 2 月 28 日
Great job! Love it when it only takes me a couple of minutes to setup and test a new plugin. Documentation is clear and simple to understand. Hooks Yeah! Will be hooking my plugin's CAPTCHA feature into your plugin. Awesome work!

thanks 🙂 super plugin

Anonymous User 15932932 2021 年 2 月 13 日
thanks 🙂 super plugin

Love it — needs reCaptcha

whartung 2021 年 1 月 12 日
I really need this to use a reCaptcha, to filter out robots. I love this sidebar login, it's so easy to use.

Please update

Knud 2019 年 12 月 3 日
Please update... I just have this: Warning: sizeof() [function.sizeof]: Parameter must be an array or an object that implements Countable in /var/www/railworks.dk/public_html/wp-content/plugins/sidebar-login/includes/class-sidebar-login-widget.php on line 213
閱讀全部 79 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Sidebar Login〉的開發相關工作。

參與者
  • Mike Jolley

〈Sidebar Login〉外掛目前已有 24 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈Sidebar Login〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄。

變更記錄

3.0.1

  • Fix – Fix rendering of additional links when using non-latin characters in the link text.

3.0.0

  • Refactor – Rewritten majority of plugin using more up to date standards and namespaces.
  • Refactor – Cleaned up the widget settings form to make functionality clearer.
  • Refactor – Removed email->username conversion since this is supported natively.
  • Tweak – Added %nicename% placeholder.
  • Tweak – Improved default styling and included extra wrapping divs (.sidebar-login-form, .sidebar-login-account, .sidebar-login-links).
  • Performance – Removed jQuery dependency and BlockUI script.
  • Performance – Removed sidebar_login_js_in_footer filter – this is now true by default.
  • Fix – Prevent notices due to incorrect sizeof() usage.

2.7.3

  • Tweak – %avatar% placeholder.
  • Tweak – Removed translations due to WordPress.org language packs.
  • Tweak – sidebar_login_widget_wp_login_form filter.
  • Fix – Removed force_ssl_login which is deprecated in 4.4 in favour of force_ssl_admin.

2.7.2

  • Feature – Added firstname, lastname, name tags.
  • Fix – PHP4 widget contructors (https://gist.github.com/chriscct7/d7d077afb01011b1839d).
  • Fix – Missing strings in localisation.
  • Fix – Change email to username during wp_authenticate hook.

2.7.1

  • Make rememberme show by default, without a widget save.

2.7.0

  • Renamed textdomain from sidebar_login to sidebar-login.
  • Moved translations to Transifex.
  • Added Grunt.
  • Removed deprecated sidebarlogin function.
  • Option to show/hide the rememberme checkbox.
  • Allow login using an email address – username will be queried based on address given.

2.6.0

  • Support for Buddypress Profile URL via %buddypress_profile_url%. Thanks Tim Reeves.
  • Support for BBPress Profile URL via %bbpress_profile_url%.
  • Slovakian translation by Alexander Kriss
  • Swedish translation by Tommy Wahlund
  • Dutch translation by Bert Smulders
  • Russian and Ukranian translation by Yarri
  • Polish translation by Czeslaw Liebert

2.5.3

  • Removed nonce check on frontend due to conflict with caching scripts
  • Arabic translation by Mamoun Elkheir
  • Brazillian translation by Marco André Argenta
  • Italian translation by Adriano Calvitto

2.5.2

  • Latvian translation by Lana Mangusa
  • German translation by Klaus-Peter
  • Wrapped response to prevent crap plugins breaking the response

2.5.1

  • Filterable error classes
  • Tweak to how SSL logins are handled.
  • FR translation
  • Fix $link_cap

2.5.0

  • Rewrite and code cleanup – class based.
  • Optionless – Moved all settings to the widgets themselves rather than having a settings page.
  • Removed all localisations (these are out of date, and need re-doing)
  • Removed JSONP/GET request – although this allowed logins between urls of different origin, it poses a security risk as GET requests are logged.

2.4.0

  • XSS Fix
  • Added classes to tags in widget
  • Improved/filtered register and lost password links
  • Removed the outdated openid/fb code. Hook it in if you want it.
  • Removed markup in favour of wp_login_form()

2.3.6

  • Sanitize REQUEST_URI/$pageURL

2.3.5

  • Use jsonp to enable login from http to https
  • Fixed remember me logic (in js)
  • Sanitize redirect url
  • Removed esc_attr from username and password to prevent breaking login
  • Updated french and italian langs
  • Added Swedish lang by Ove Kaufeldt

2.3.4

  • SSL URL tweak
  • Better handling for force_ssl_login and force_ssl_admin

2.3.3

  • Removed a link after request from WordPress.org staff
  • wp_lostpassword_url() for lost password link
  • sanitized user_login
  • Uses wp_ajax for ajax login instead of init functions
  • Secure cookie logic change

2.3.2

  • Login redirect fix

2.3.1

  • Error loop fix
  • Added filter for errors – sidebar_login_error

2.3

  • Put the project on GitHub
  • Added new localisations
  • New options panel
  • AJAX Login

2.2.15

  • FORCE_SSL_LOGIN/ADMIN double login issue fix (Thanks to bmaupin)
  • Only added openid styling if other plugin is installed
  • Added more languages

2.2.14

  • Further revised the |true / |user_capability code – only need to use one or the other now.

2.2.13

  • Updated translations
  • Support for https and style.css
  • is_date fix
  • Added option for headings
  • Removed attribute_escape for esc_attr – therefore this version needs wp 2.8 and above
  • USER LEVEL option gone – replaced with USER CAPABILITY instead – use a capability like ‘manage_options’

2.2.12

  • Headers sent bugs fixed
  • Avatar display option

2.2.11

  • More/Updated langs

2.2.10

  • Moved settings to appearance menu
  • Changed min user level to capilbilty ‘manage_options’
  • Fixed menu showing in wordpress 3.0
  • Added %USERID% for links
  • Fixed white space bug for link options

2.2.8

  • Min level setting for links. Add user level after |true when defining the logged in links.
  • Moved ‘settings’ from tools to settings.
  • Encoded ampersand for valid markup
  • Moved Labels about
  • Fixed SSL url
  • Reusable widget

2.2.6

  • Added changelog to readme.
  • OpenID Plugin (https://wordpress.org/extend/plugins/openid/) Integration.
  • %username% can be used in your custom links shown when logged in (gets replaced with username)
  • WP-FacebookConnect (https://wordpress.org/extend/plugins/wp-facebookconnect/) integration (untested!)
  • Minor fixes (worked through a big list of em!)

中繼資料

  • 最新版本: 3.0.1
  • 最後更新: 2 年前
  • 啟用安裝數: 20,000+
  • WordPress 版本需求: 5.0 或更新版本
  • 已測試相容的 WordPress 版本: 5.5.11
  • PHP 版本需求: 5.6 或更新版本
  • 語言:

    Bengali (Bangladesh)、Bulgarian、Catalan、Czech、Danish、Dutch、English (Canada)、English (US)、Finnish、French (France)、Galician、German、German (Switzerland)、Italian、Japanese、Korean、Norwegian (Bokmål)、Persian、Portuguese (Brazil)、Russian、Spanish (Colombia)、Spanish (Spain)、Spanish (Venezuela)、Swedish、及 Turkish.

    將這個外掛本地化為你的母語版本

  • 標籤:
    loginlogin widgetsidebarsidebar loginwidget
  • 進階檢視

評分

檢視全部
  • 5 星 59
  • 4 星 9
  • 3 星 5
  • 2 星 2
  • 1 星 4
登入以提交評論

參與者

  • Mike Jolley

技術支援

最近 2 個月解決的問題:

總計 1 個問題,已解決 0 個

查看技術支援論壇

贊助

想要支援這個外掛的發展嗎?

贊助這個外掛

  • 關於我們
  • 最新消息
  • 主機託管
  • 贊助基金會
  • Swag
  • 線上說明
  • 開發者資源
  • 共同參與
  • Learn
  • 展示網站
  • 外掛目錄
  • 佈景主題目錄
  • 區塊版面配置目錄
  • WordCamp
  • WordPress.TV
  • BuddyPress
  • bbPress
  • WordPress.com
  • Matt
  • 隱私權
  • Public Code
WordPress.org
WordPress.org

Taiwan 正體中文

  • 造訪我們的 Facebook 粉絲專頁
  • 造訪我們的 Twitter 帳號
  • Visit our Instagram account
  • Visit our LinkedIn account
程式碼,如詩