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 3 years have passed since last update.

WordPressのGutenbergで画像リンク先基本設定をメディアファイルに

Posted at

画像ポップアップ表示のプラグインは、メディアリンク設定がないと機能しなかったので。。

基本設定でリンク有りにしたかったのでメモ

設定する前のImageブロックでは設定が反映されなかった感じがします

新しくブロックを追加後に動作確認できたと感じます

スクリーンショット 2021-07-03 10.01.43.png

設定方法1

funciton.php
add_action('after_setup_theme', function () {
  update_option('image_default_link_type', 'file');
});

###設定方法2

wp-admin/options.phpのページで「image_default_link_type」を「file」に設定

スクリーンショット 2021-07-03 10.15.30.png

参考サイト

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?