2012-07-23 38 views
3

我嘗試使用標記製作一個不錯的textearea。我的用戶在40以上,所以他們需要一個wysiwyg編輯器來馬上加載。如何使wp_editor在視覺模式下啓動

我使用wordpres並加載領域是這樣的:

<form style="clear:both" method='post' action="./?id=<?= $_GET['id'] ?>"> 
<?php wp_editor(getUserData('message'), 'message'); ?> 
<div id="message" ></div > 
<input type="submit" name='action' value="opslaan"> 
</form> 

但加載wordpres的HTML作案編輯器。他們絕對不會得到他們需要推動視覺才能獲得漂亮的編輯。那麼有沒有人知道如何使它在默認情況下以可視模式加載?

感謝

+0

你能告訴我們完整的ti nymce配置? – Thariama 2012-07-30 10:52:51

回答

1

This工作對我來說(WordPress的3.5.2):就在你的頁面

add_filter('wp_default_editor', create_function('', 'return "tinymce";')); 

,如果你不想要的:

add_filter('wp_default_editor', 'force_default_editor'); 
function force_default_editor() { 
    //allowed: tinymce, html, test 
    return 'tinymce'; 
} 
1

您可以使用此改變你所有網站的默認行爲

相關問題