Prima del WP 3.9 avevo applicato i seguenti due filtri nel function.php:
function my_mce_buttons_2( $buttons ) {
array_unshift( $buttons, 'styleselect' );
return $buttons;
}
add_filter('mce_buttons_2', 'my_mce_buttons_2');
function mce_mod( $init ) {
$init['theme_advanced_blockformats'] = 'p,h3,h4';
$init['theme_advanced_styles'] = "Header gross=mus-bi news-single-bighead; Header klein=mus-bi news-single-smallhead; Link=news-single-link; List Items=news-single-list";
return $init;
}
add_filter('tiny_mce_before_init', 'mce_mod');
in modo che il menu a discesa dei formati di paragrafo mostri solo p, h3 e h4 mentre il menu a discesa degli stili personalizzati mostra "Header gross", "Header klein" e così via. Ma purtroppo wp e tinymce non danno più fastidio dal wp 3.9, ora vedo solo i formati di paragrafo standard
così come il menu a discesa del formato degli stili standard:
Finora non ho trovato alcun documento su se alcuni hook sono stati modificati con l'aggiornamento a Tinymce 4. Qualcuno lo sa? Con i migliori saluti Ralf
Aggiornamento: Ok sulla base di un po 'più di ricerca e dei commenti qui sotto credo che ho capito le cose:
//Creating the style selector stayed the same
function my_mce_buttons( $buttons ) {
array_unshift( $buttons, 'styleselect' );
return $buttons;
}
add_filter('mce_buttons', 'my_mce_buttons');
function mce_mod( $init ) {
//theme_advanced_blockformats seems deprecated - instead the hook from Helgas post did the trick
$init['block_formats'] = "Paragraph=p; Heading 3=h3; Heading 4=h4";
//$init['style_formats'] doesn't work - instead you have to use tinymce style selectors
$style_formats = array(
array(
'title' => 'Header 3',
'classes' => 'mus-bi news-single-bighead'
),
array(
'title' => 'Header 4',
'classes' => 'mus-bi news-single-smallhead'
),
array(
'title' => 'Link',
'block' => 'a',
'classes' => 'news-single-link',
'wrapper' => true
)
);
$init['style_formats'] = json_encode( $style_formats );
return $init;
}
add_filter('tiny_mce_before_init', 'mce_mod');
style_select
e aggiungere un menu "Classi". wordpress.stackexchange.com/questions/143689/…