在编辑器中获取<hr>的按钮

时间:2010-12-28 作者:Hinek

WordPress编辑器没有插入水平线的按钮(<hr /> 在html中)。是否有添加此按钮的插件?还是一个简单的方法来添加这样一个按钮自己?

1 个回复
最合适的回答,由SO网友:Sergio Majluf 整理而成

有一个简单的方法。开放函数。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

结束

相关推荐

How do you debug plugins?

我对插件创作还很陌生,调试也很困难。我用了很多echo,它又脏又丑。我确信有更好的方法可以做到这一点,也许是一个带有调试器的IDE,我可以在其中运行整个站点,包括插件?