Q.質問内容
「スタイル検索」では管理画面で検索条件としたスタイルカテゴリーのタイトルに【カテゴリー+「で探す」】とありますが、この「で探す」の文言を別のものにすることはできますか。
▼変更箇所イメージ
A.ダッシュボード左メニュー【外観】→【テーマエディター】より該当のファイルを下記の方法でカスタマイズしてください。
1. カスタム投稿タイプ「スタイル」カテゴリーの場合
編集するファイル: archive-style.php
編集する箇所: 21行目付近
<legend class="p-search__elem-item-title"><?php printf( __( 'Search by %s', 'tcd-w' ), esc_html( $options['style_cat_label' . $i] ) ); ?></legend>
↓
<legend class="p-search__elem-item-title"><?php printf( __( '%s●●●' ), esc_html( $options['style_cat_label' . $i] ) ); ?></legend>
1. カスタム投稿タイプ「スタッフ」の場合
編集するファイル: archive-style.php
編集する箇所: 47行目付近
<legend class="p-search__elem-item-title"><?php printf( __( 'Search by %s', 'tcd-w' ), esc_html( $staff_label ) ); ?></legend>
↓
<legend class="p-search__elem-item-title"><?php printf( __( '%s●●●' ), esc_html( $staff_label ) ); ?></legend>
●●●に任意の文言を入力してください。「%s」のみにした場合、カテゴリー名のみが表示されます。
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!