我认为更改tinymce中的“生成链接按钮”不可能也不容易
但在wordpress中,您可以在编辑器中提取自定义样式并将其应用于链接;)
也许在主题函数中使用类似的东西。php:
add_filter( \'mce_buttons_2\', \'my_mce_buttons_2\' );
// add the style list to tinymce
function my_mce_buttons_2( $buttons ) {
array_unshift( $buttons, \'styleselect\' );
return $buttons;
}
add_filter( \'tiny_mce_before_init\', \'my_mce_before_init\' );
function my_mce_before_init( $settings ) {
$style_formats = array(
array(
\'title\' => \'Custom Class for Links\', // title that apear in the list
\'selector\' => \'a\', // limited to specific html tag
\'classes\' => \'myClass\' // the class to add
)
);
$settings[\'style_formats\'] = json_encode( $style_formats );
return $settings;
}
不要忘记添加的定义。编辑器样式的myClass。css检查
add_editor_style() 用于在WP编辑器中加载和使用自定义系统的函数
我希望这对你有帮助