워드프레스 kboard 썸머노트 에디터를 사용하고 있습니다.
엔터 시 <p> 태그 없이 br만 되게 가능한가요?
function에 추가 하는 방법
add_filter('tiny_mce_before_init','change_mce_options', 10, 1);
function change_mce_options($init){
$init["forced_root_block"] = false;
$init["force_br_newlines"] = true;
$init["force_p_newlines"] = false;
$init["convert_newlines_to_brs"] = true;
return $init;
}
2. 게시판 스킨에 넣는 방법
\wp-content\plugins\kboard\skin\default\script.js
$(".summernote").on("summernote.enter", function(we, e) { $(this).summernote("pasteHTML", "<br><br>"); e.preventDefault(); });
위의 방법을 사용했는데 안되네요ㅠㅠ
안녕하세요~^^
아래코드를
$(".summernote").on("summernote.enter", function(we, e) {
$(this).summernote("pasteHTML", "<br><br>");
e.preventDefault();
});
아래 처럼 코드를 수정해보시겠어요?
jQuery(".summernote").on("summernote.enter", function(we, e) {
jQuery(this).summernote("pasteHTML", "<br><br>");
e.preventDefault();
});
고맙습니다.