Q.TCDテーマオプションのボックス設定やコンテンツで設定したリンク先URLをクリックしたときに「新しいタブで開く」ようにするにはどうしたらいいでしょうか?
A.下記の方法でご対応ください。
下記ファイルを編集する事で実現可能です。
編集するファイル:front-page.php
編集する箇所:
<a class="content02-button" href="<?php echo esc_url( $options['index_content2_url' . $i] ); ?>"><?php echo esc_html( $options['index_content2_link_text' . $i] ); ?></a>
↓↓↓
<a class="content02-button" href="<?php echo esc_url( $options['index_content2_url' . $i] ); ?>"<?php if($i==3){ echo ' target="_blank"';}; ?>><?php echo esc_html( $options['index_content2_link_text' . $i] ); ?></a>
※上記例は「ボックス3」のときに「target=”_blank”」を書き出す設定ですが、
「if($i==3)」という箇所を変更することで、他のボックスの場合にも対応することが可能です。
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!