web-dev-qa-db-ja.com

エディタで<hr>のボタンを取得します

どういうわけか、WordPressエディタには水平線を挿入するボタンがありません(HTMLの<hr />)。このボタンを追加するプラグインはありますか?それとも自分でそのようなボタンを追加する簡単な方法はありますか?

5
Hinek

簡単な方法があります。 functions.phpを開き、このコードを追加してください。それは多くのHTMLエンティティに対して機能します。

// got this form http://www.sycha.com/wordpress-add-hr-button-tinymce-visual-editor

function enable_more_buttons($buttons) {
  $buttons[] = 'hr';

 /*
  Repeat with any other buttons you want to add, e.g.
  $buttons[] = 'fontselect';
  $buttons[] = 'sup';
 */

 return $buttons;
}

add_filter("mce_buttons", "enable_more_buttons");
//add_filter("mce_buttons_2", "enable_more_buttons"); // add to second row
//add_filter("mce_buttons_3", "enable_more_buttons"); // add to third row
7
Sergio Majluf