functions.php
利用規約(TOS)ページを/tos/に変更
1 2 3 4 5 |
add_filter( 'wpmem_tos_link_txt', 'my_function' ); function my_function( $text ) { $text = '<a href="/tos/" target="_blank" rel="noopener">利用規約</a>に同意する'; return $text; } |
1 2 3 4 5 |
add_filter( 'wpmem_tos_link_txt', 'my_function' ); function my_function( $text ) { $text = '<a href="/tos/" target="_blank" rel="noopener">利用規約</a>に同意する'; return $text; } |
コメント