Questions tagged «quicktag»

1
如何在自定义弹出tinymce窗口中添加“插入/编辑链接”按钮?
我需要在文章的正文中插入一些文本,将其包装在带有自定义类的某些div标记中,从而变成“侧面标记”。 我在tinymce中创建了一个自定义按钮,该按钮会弹出一个带有文本字段的新窗口。您编写文本,然后单击OK,它将添加begin和endig div标签并将其插入到光标所在的wp编辑器中。 这是代码: (function () { tinymce.PluginManager.add('custom_mce_button2', function(editor, url) { editor.addButton('custom_mce_button2', { icon: false, text: 'Side Tag', onclick: function (e) { editor.windowManager.open( { title: 'Insert a Sidetag', body: [{ type: 'textbox', name: 'title', placeholder: 'Type the side tag content here.', multiline: true, minWidth: 700, minHeight: 50, }, { type: …

2
如何在wpLink()上设置默认值
在WP 3.2中,WordPress可能具有一项新功能,可以将Link-Quicktags添加到编辑器中。但是我发现了一个为链接按钮设置默认值的函数: 看一下wplink.js第278行。 setDefaultValues : function() { // Set URL and description to defaults. // Leave the new tab setting as-is. inputs.url.val( 'http://' ); inputs.title.val( '' ); // Update save prompt. inputs.submit.val( wpLinkL10n.save ); }, 如何为自定义值设置值? 这可能吗,您能帮我吗? 感谢JavaScript专家的回答。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.