简体   繁体   中英

How do I assign an href value to a custom TinyMCE button in WordPress?

Okay, this is killing me. I've written a WordPress plugin that adds a custom button to the TinyMCE editor and it works great, except that the options pop-up window triggered by the button loads differently than similar popup windows that are native to WP...

Specifically, when you click the Add Media button above the TinyMCE toolbar in WordPress, the Add Media window opens up in a nice thickbox modal. It also loads in an iframe, because the button HTML that gets output is wrapped in an anchor tag with a URL href value:

<a href="http://.../wp-admin/media-upload.php?post_id=916&amp;TB_iframe=1&amp;width=640&amp;height=354" class="thickbox add_media" id="content-add_media" title="Add Media" onclick="return false;">

But when my button's HTML gets output, the anchor tag has an href value of 'javascript:;':

<a role="button" id="content_companyinfo" href="javascript:;" class="mceButton mceButtonEnabled mce_companyinfo" onmousedown="return false;" onclick="return false;" aria-labelledby="content_companyinfo_voice" title="Insert company info fields" tabindex="-1">

Here is my TinyMCE editor plugin code: http://pastebin.com/kuQJRHJR

And here is the WP core TinyMCE editor plugin for the Add Media button: http://core.trac.wordpress.org/browser/trunk/wp-includes/js/tinymce/plugins/media/editor_plugin_src.js

The TinyMCE addButton function doesn't allow you to set an href value, only a cmd value that links to a custom command function, which you create using addCommand.

I tried just adding the class 'thickbox' to my button in the settings of the addButton function, but that had a weird effect of creating a thickbox modal behind my normal pop-up window.

Anyone know how to do this the right way? Thanks in advance!

  1. In your plugin's editor_plugin.js init function add this function:

     ed.onInit.add(function(ed, evt) { // make that the interactions window will open in a thickbox by adding the button the right attributes jQuery('#content_myInteractions').addClass('thickbox'); }); 

    Change "content_myInteractions" to your button id.

  2. In your button's command, use tb_show() to open the content you want in a thickbox:

     tb_show('myInteractions', '#TB_inline?height=300&width=400&inlineId=interactions_wrapper'); 

I took my thickbox content from a div I entered to the bottom of my page whith jQuery (inline content). You can also use an iframe. This might help thickbox.net

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM