WP 3.9 이전에는 functions.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');
단락 형식 드롭 다운에는 p, h3 및 h4 만 표시되고 사용자 정의 스타일 드롭 다운에는 "헤더 총", "헤더 클라인"등이 표시됩니다. 그러나 불행히도 wp와 tinymce는 wp 3.9 이후 더 이상 귀찮게하지 않습니다. 현재 표준 단락 형식 드롭 다운 만 볼 수 있습니다.
표준 스타일 형식 드롭 다운뿐만 아니라
지금까지 나는 hooks가 tinymce 4로 업데이트되었는지에 대한 문서를 찾지 못했습니다. 감사합니다 Ralf
업데이트 : Ok 조금 더 많은 연구와 아래의 의견을 바탕으로 내가 알아 낸 것 같습니다.
//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
"클래스"메뉴를 추가하는 방법입니다. wordpress.stackexchange.com/questions/143689/…