メインコンテンツにスキップ

フットボール (サッカー) の用語

このプラグインは WordPress の `gettext` フィルタを優先度 20 で使用して、SportsPress の文字列をフットボール慣例に再マッピングします。

今日アップデートされました

フットボール (サッカー) の用語

このプラグインは WordPress の gettext フィルタを優先度 20 で使用して、SportsPress の文字列をフットボール慣例に再マッピングします。

ラベルマッピング

デフォルト SportsPress

フットボール

Events

Matches

Event

Match

Add New Event

Add New Match

Edit Event

Edit Match

View Event

View Match

View all events

View all matches

Venues

Grounds

Venue

Ground

Edit Venue

Edit Ground

Teams

Clubs

Team

Club

Add New Team

Add New Club

Edit Team

Edit Club

View Team

View Club

View all teams

View all clubs

マッピングは sportspress テキストドメインにのみ適用されます。

ラベルが表示される場所

  • 管理メニュー — SportsPress のデフォルトの代わりに「Matches」、「Grounds」、「Clubs」が表示されます

  • 投稿タイプラベル — 編集画面、リストテーブル、新規追加ボタン

  • フロントエンド — テーマが SportsPress テキストドメインを使用するチームと選手ページのセクション見出し

  • パフォーマンス入力 — Own Goals 列はテキストオプションテーブルを介して「OG」と表示されます

特定の再マッピングを無効化する

ラベルを SportsPress のデフォルトのまま維持するには、より高い優先度の gettext フィルタを登録します。

add_filter( 'gettext', function( $translated, $original, $domain ) {
    if ( $domain === 'sportspress' && $original === 'Teams' ) {
        return $original;
    }
    return $translated;
}, 25, 3 );

こちらの回答で解決しましたか?