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?

More than 3 years have passed since last update.

【WordPress】Breadcrumb NavXTでリストの途中に項目を追加する(リンクも追加)

Last updated at Posted at 2020-12-17

Breadcrumb NavXTでリストの途中に項目を追加する - Qiitaを見て追加してみたものの、リンクが追加されなかったので追加できるようにしてみました

何が足りないかを調べる


$breadcrumb->set_url(home_url('test/'));
//追加したい要素の情報をvar_dumpで表示
var_dump($breadcrumb);

linked: false

こちらがtrueじゃないとリンクしないようでした

コードの書き換え


var_dump($breadcrumb);
//↓変更
$breadcrumb->set_linked(true);

これで無事リンクにできました

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?