wp_registerのテンプレートタグは、ログインしていないユーザーに関する”登録”か、もしユーザーがログインしている場合”サイト管理”のリンクを表示します。”登録”リンクは、もし管理画面 > 設定 > 一般 > メンバーシップ:誰でもユーザー登録ができるようにするチェックボックスにチェックされた場合のみ提供されます。登録リンクは、/wp-register.phpスクリプトに実行させて、サイト管理は/wp-admin/index.phpにリンクします。
This tag displays either the “Register” link to users that are not logged in or the “Site Admin” link if a user is logged in. The “Register” link is only offered if the Administration > Settings > General > Membership: Anyone can register box is checked. The Register link causes the /wp-register.php script to execute and Site Admin links to /wp-admin/index.php.
wp_registerのタグは、WordPress μ上では目的通りに機能しません。
This tag does not function as intended on WordPress μ.
wp_registerのテンプレートタグ使用方法
[php][/php]wp_registerのパラメーター
$before
(string) (optional)テキストを登録またはサイト管理リンクの前に表示する。
(string) (optional) Text to display before the Register or Site Admin link.
デフォルト:’
Default:’
‘
$after
(string) (optional)テキストを登録またはサイト管理リンクの後に表示する。
(string) (optional) Text to display after the Register or Site Admin link.
デフォルト:’
Default:’
‘
例
デフォルトの使い方
wp_registerは、
[php][/php]wp_register displays the link in list format
.
テキストがなければ前または後に表示
次のコード例は、パラメーターの前か後の中にテキストなしで、”登録”または”サイト管理”リンクを表示します。
[php][/php]The following code example displays the “Register” or “Site Admin” link with no text in before or after parameters.
WordPress μ
WordPress μ上では、/wp-register.phpファイルがなく、/wp-login.php?action=registerは、有効な登録フォームがありません。したがって、wp_register関数は、登録リンクが表示されません。
On WordPress μ, there is no /wp-register.php file, and /wp-login.php?action=register is not a valid registration form. Thus, wp_register function does not show a registration link.
備考
*用途:apply_filters()は、register / adminリンクのコンテンツである’register’ハックを呼び出します。
* Uses: apply_filters() Calls ‘register’ hook on register / admin link content.
変更ログ
Since: 1.5.0
ソースファイル
wp_register()は、wp-includes/general-template.phpに位置しています。
is located in wp-includes/general-template.php.
関連テンプレートタグ
is_user_logged_in, wp_login_url, wp_logout_url, wp_lostpassword_url, wp_logout, wp_loginout, wp_register, wp_login_form
See also index of Function Reference and index of Template Tags.
コメント