WP-Members 기본 text 변경방법

site 1

url : wpmem_default_text_strings

Filters the default terms for user facing strings in the plugin.  Can be used for managing translations.

회원과 관련해 WP-Members 플러그인 사용시에 각 해더들이나 버튼들의 text를 바꿀때 사용합니다.

<?php
add_filter( 'wpmem_default_text_strings', function($text) {
  $text = array(
    'login_heading' => 'Log In to Your Account',
    'register_heading' => 'Register New Account',
  );
  return $text;
});
?>
Share this

Leave your question or feedback

따뜻한 말한마디가 블로거를 춤추게 합니다. 이메일 주소는 공개되지 않습니다.