網頁

2014年6月19日 星期四

WordPress開發筆記-將textarea改用WordPress內建的編輯器

現在要在wordpress中加入內建的編輯器真簡單,只要使用wp_editor就行了

Function Reference/wp editor中,如下
wp_editor( $content, $editor_id, $settings = array() );

例如,要創建一個id及name是description的編輯框,就如下:
$args = array("textarea_rows" => 5, "textarea_name" => "description");
wp_editor($notes, "description", $args);

這樣就可以用了,不過這function只有3.3之後才有囉

參考網址
Add rich text editor(s)… the right way
Function Reference/wp editor

沒有留言:

張貼留言