El siguiente pequeño complemento crea un botón personalizado dentro de la línea 1 de la versión 4 de WordPress TinyMCE, probado en WP versión 3.9-beta2.
El complemento se ha var_dump
incluido para comprender los valores. También es posible añadir el botón a otras líneas del editor visual, sólo otro gancho, al igual que para la línea 2: mce_buttons_2
.
Resultado
Plugin, lado PHP - tinymce4-test.php
<?php
/**
* Plugin Name: TinyMCE 4 @ WP Test
* Description:
* Plugin URI:
* Version: 0.0.1
* Author: Frank Bültge
* Author URI: http://bueltge.de
* License: GPLv2
* License URI: ./assets/license.txt
* Text Domain:
* Domain Path: /languages
* Network: false
*/
add_action( 'admin_head', 'fb_add_tinymce' );
function fb_add_tinymce() {
global $typenow;
// Only on Post Type: post and page
if( ! in_array( $typenow, array( 'post', 'page' ) ) )
return ;
add_filter( 'mce_external_plugins', 'fb_add_tinymce_plugin' );
// Add to line 1 form WP TinyMCE
add_filter( 'mce_buttons', 'fb_add_tinymce_button' );
}
// Inlcude the JS for TinyMCE
function fb_add_tinymce_plugin( $plugin_array ) {
$plugin_array['fb_test'] = plugins_url( '/plugin.js', __FILE__ );
// Print all plugin JS path
var_dump( $plugin_array );
return $plugin_array;
}
// Add the button key for address via JS
function fb_add_tinymce_button( $buttons ) {
array_push( $buttons, 'fb_test_button_key' );
// Print all buttons
var_dump( $buttons );
return $buttons;
}
Script, lado de JavaScript - plugin.js
( function() {
tinymce.PluginManager.add( 'fb_test', function( editor, url ) {
// Add a button that opens a window
editor.addButton( 'fb_test_button_key', {
text: 'FB Test Button',
icon: false,
onclick: function() {
// Open window
editor.windowManager.open( {
title: 'Example plugin',
body: [{
type: 'textbox',
name: 'title',
label: 'Title'
}],
onsubmit: function( e ) {
// Insert content when the window form is submitted
editor.insertContent( 'Title: ' + e.data.title );
}
} );
}
} );
} );
} )();
Esencia
Utilice el bueistge Gist / 9758082 como referencia o descárguelo. The Gist también tiene más ejemplos para diferentes botones en TinyMCE.
Campo de golf
Y, si desea tener un botón de icono real, puede aprovechar los dashicons o su propia fuente de icono.
Cree un archivo CSS y ponga en cola en el lado del administrador;
Básicamente tomado directamente del núcleo.
fuente
El método simple de agregar botón
1) AGREGAR ESTE CÓDIGO EN FUNCIONES.PHP, O EN PLUGIN
2) Cree 1_button.php en la carpeta de destino e inserte este código (tenga en cuenta, cambie las URL "wp-load" y "ButtonImage.png" !!!)
fuente