LoginSignup
1
1

More than 1 year has passed since last update.

ブロックエディターの見出しからH1を削除する方法

Posted at

WordPressのブロックエディター(Gutenberg)の見出しからH1を削除する方法です

WordPress5.9以降の方法です

単純にCSSで非表示にしちゃいましょう!

H1の他に、H5なども非表示にできますよ

qiita.php

function my_h_style() {
  echo '<style>
  button[aria-label="見出し1"],button[aria-label="見出し4"],button[aria-label="見出し5"],button[aria-label="見出し6"]
{
	display: none;
}
  </style>'.PHP_EOL;
}
add_action('admin_print_styles', 'my_h_style');

スッキリしましたね

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