0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

Wordpressテーマの「Arkhe」というテーマで
キャッチフレーズを表示しようと思ったのですが
表示設定項目が見つけられなかったので
フックを使って表示しました。

コード

functions.php
function my_custom_header_content() {
  // キャッチフレーズを取得
  $catchphrase = get_bloginfo('description');
  // キャッチフレーズが設定されている場合は表示
  if ($catchphrase) {
    echo '<div class="my-catchphrase" style="color:#fff;"><span style="color:red;font-weight:bold;padding-right:.8em;">全国送料無料</span>' . $catchphrase . '</div>';
  }
}
add_action('arkhe_header_bar_content', 'my_custom_header_content');
get_bloginfo('description')

でキャッチフレーズを取得して

  if ($catchphrase) {
    echo '<div class="my-catchphrase" style="color:#fff;"><span style="color:red;font-weight:bold;padding-right:.8em;">全国送料無料</span>' . $catchphrase . '</div>';
  }

キャッチフレーズがある場合のみ表示してます。

表示場所は

add_action('arkhe_header_bar_content', 'my_custom_header_content');

で今回はヘッダーバーに表示してます。
公式サイトで他に表示できる場所がまとまっています。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?