1
1

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】プラグインなしでヘッダーメニューにサブタイトルをつける方法

Last updated at Posted at 2024-02-02

やりたいこと

今回やりたいことは、WordPressでプラグインなしで以下のようなヘッダーメニューの下にサブタイトルをつけることです。

スクリーンショット 2024-01-28 23.54.07.png

以下のコードをfunctions.phpに挿入

add_filter('walker_nav_menu_start_el', 'description_in_nav_menu', 10, 4); function description_in_nav_menu($item_output, $item){ return preg_replace('/(<a.*?>[^<]*?)</', '$1' . "<br /><span>{$item->attr_title}</span><", $item_output); }

ワードプレスの管理画面

WordPressの管理画面から「外観」→「メニュー」を選択

ファイル名

各メニューの「タイトル属性」にサブタイトル文字を入すると完了です!!

ファイル名

最後に

以上となります!
意外と簡単にできますね。。
ワードプレスのヘッダーのデザイン修正は結構難しくてつまずきやすいので自由に色々デザインできるようになりたいです、、!

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?