Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ワードプレスで「ホーム」ボタンの名前を「ブログ」に変更する方法を教えてください。
その後、「ホーム」という名前の新しいページを作成できますか。ワードプレスがすでに提供しているデフォルトの「ホーム」と競合しますか?
どうもありがとう
wp-includeフォルダーに移動し、post-template.phpファイルを開きます。このファイルの下で次のコードを検索します。
if ( ! empty($args['show_home']) ) { if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] ) $text = __('Home');
次に、$textをホームから目的のテキストに変更します。