Simple Google News Quicktag
Shortcode quick tag
// Add Quicktags
function custom_quicktags() {
if ( wp_script_is( 'quicktags' ) ) {
?>
<script type="text/javascript">
QTags.addButton( '5', 'Google News', '[google_news region="de" query="" limit=""]', '', '', 'Google News', 1 );
</script>
<?php
}
}
add_action( 'admin_print_footer_scripts', 'custom_quicktags' );