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?

More than 5 years have passed since last update.

Internal Link Building 日本語対応化

Last updated at Posted at 2019-11-21

登録したキーワードに対して自動的にURLのリンクを付けてくれるWordpressのプラグイン 「Internal Link Building」ですが、最新版では日本語の検索ができなくなってしまいました。

原因を探っていたら、この一行を旧バージョンに戻すだけで日本語対応ができるようになりました。

対象のファイルは
wordpressのインストールフォルダ/wp-content/plugins/internal-link-building-plugin/internal_link_building.php
です。

修正前(179行目)
$needle ='@()('.$before.$name.'\b'.$after.')()@';
修正後(179行目)
$needle ='@()('.$before.$name.$after.')()@';

\bは正規表現の単語区切り。PHPでは日本語を区切ってくれないようです。

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?