説明
新規会員登録ページのタグのタイトル「新規入会フォーム」を書き換えます。
使い方
add_filter( 'usces_filter_title_newmemberform', 'my_filter_title_newmemberform' );
function my_filter_title_newmemberform( $title ) {
// 処理
return $title;
}
パラメータ
- $title
- (文字列)タイトル
戻り値
- $title
- (文字列)タイトル
用例
ソースファイル
usc-e-shop/classes/usceshop.class.php
PAGE TOP