TinyMCEエディターにカスタムボタンを追加し、クリックしたときにWPのThickboxを開きます。
tb_show()
関数がajaxで必要なコンテンツをロードするようにするにはどうすればよいですか?
// the ajax
add_action('wp_ajax_getTheContent', 'getTheContent');
function getTheContent(){
echo 'weqwtegeqgr'; // <- this should be displayed in the TB
die();
}
以下は、私が使用しているエディタープラグインコードの一部です。
init : function(ed, url) {
ed.addButton('do_stuff', {
title : 'Do Stuff',
image : url + '/icon.gif',
onclick : function() {
OpenMyThickbox('do_stuff');
}
});
...
したがって、OpenMyThickbox
javascript関数は私がやりたいことを行うはずです:
function OpenMyThickbox(tag){
tb_show(tag, '...'); // <- how to load content trough ajax here ?
}