Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Abrir enlace en nueva pestaña

// Add Quicktags
function cais_custom_quicktags() {

	if ( wp_script_is( 'quicktags' ) ) {
	?>
	<script type="text/javascript">
	QTags.addButton( 'Enlace en nueva pestaña', 'A', 'a', 'a', '', '', 1 );
	</script>
	<?php
	}

}
add_action( 'admin_print_footer_scripts', 'cais_custom_quicktags' );