0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Simple Membershipのログイン画面のラベル変更

Posted at

概要

WordPressのSimple Membershipを使って会員機能を実装する際に
ログインフォームの文言を変更したのでその記録です。

実際のコード

functions.php
function modify_swpm_login_labels() {
    add_filter('swpm_login_form_set_username_label', function($label) {
        return 'メールアドレス';
    });
}
add_action('init', 'modify_swpm_login_labels');

swpm_login_form_set_username_label
というフックがありそれを使うことで変更できます。
今回は「ユーザー名またはメールアドレス」というラベルだったものを
「メールアドレス」に変更しました

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?