Tagged Questions
0
votes
1answer
83 views
where does my function output from load-* go?
I've got a function hooked into load-edit.php that prints out print content:
add_action('load-edit.php', array($this, 'generate_bulk_print_content'));
public function generate_bulk_print_content() {
...
5
votes
2answers
2k views
Open a Thickbox with content trough AJAX
I added a custom button to the TinyMCE editor, and I want to open WP's Thickbox when I click on it.
How can I make it so that the tb_show() function loads the content I want with ajax?
// the ajax
...