尝试将类添加到WordPress编辑器中的选定段落。
添加了一个名为&#39;添加时尚'<li>'
的按钮,其中有一个名为&#39;包含&#39;的项目。所以我需要为所选的&#39; <p>
&#39;添加课程。什么时候包括&#39;被压了。任何帮助都会非常感激。谢谢!
(function() {
tinymce.PluginManager.add('sanjog_custom_tinymce_button', function( editor, url ) {
editor.addButton( 'sanjog_custom_tinymce_button', {
title: 'Add stylish <li>',
type: 'menubutton',
fixedWidth: true,
icon: 'icon dashicons-menu',
menu: [
{
text: 'Includes',
onclick: function() {
tinyMCE.activeEditor.focus();
tinyMCE.activeEditor.dom.addClass(tinyMCE.activeEditor.selection.select('p'),'test');
}
},
]
});
});
})();