Add button to TinyMCE bar without creating a plugin

It is almost code golf, but this is the smallest piece of code that I could up with that will create a button on the Visual editor to turn the current paragraph in a <h2> block. add_filter( ‘tiny_mce_before_init’, ‘wpse18719_tiny_mce_before_init’ ); function wpse18719_tiny_mce_before_init( $initArray ) { $initArray[‘setup’] = <<<JS [function(ed) { ed.addButton(‘h2’, { title : ‘H2’, … Read more

How do I programatically empty trash?

You can use wp_delete_post. To get all posts with the “trash” status: $trash = get_posts(‘post_status=trash&numberposts=-1’); Then: foreach($trash as $post) wp_delete_post($post->ID, $bypass_trash = true);

File not found.