ユーザー登録が許可されている場合はコードスニペットを実行する必要がありますが、解決策が見つかりません。これを行う方法?
get_option を使えば、とても簡単に確認できます。
これは、ユーザー登録が許可されているかどうかをチェックするための簡単なコードです。
if ( get_option( 'users_can_register' ) ) {
// Your custom code or message to display if user registration is allowed.
}
get_option( 'users_can_register' )
は、ブール値のtrue(1)またはfalse(0)を返します。