사용자가 게시 할 수 있지만 지금까지 운이 없었던 곳에서 TinyMCE 편집기를 프론트 엔드에 추가하려고합니다. 코드는 다음과 같습니다.
PHP :
add_action('wp_print_scripts', 'my_enqueue_scripts');
function my_enqueue_scripts() {
wp_enqueue_script( 'tiny_mce' );
if (function_exists('wp_tiny_mce')) wp_tiny_mce();
}
자바 스크립트 :
jQuery(document).ready(function(){
tinyMCE.init({
mode : "textareas",
theme : "simple",
/*plugins : "autolink, lists, spellchecker, style, layer, table, advhr, advimage, advlink, emotions, iespell, inlinepopups, insertdatetime, preview, media, searchreplace, print, contextmenu, paste, directionality, fullscreen, noneditable, visualchars, nonbreaking, xhtmlxtras, template",*/
editor_selector :"editor"
});
});
HTML :
<textarea rows="8" cols="40" name="description" id="editor" class="required"><?php echo $description;?></textarea>
문제 : 텍스트 편집기가 텍스트 영역에 추가되지 않습니다. TinyMCE js 파일이로드 중이지만
1
아마도 프론트 엔드 편집기
—
mike23