简体   繁体   English

如何在wordpress中加载ckeditor

[英]how to load ckeditor in wordpress

I have a wordpress site, and i create a box at admin area dashboard which contain a text area, and now i want my textarea implement ckeditor, does anyone knows how to do it? 我有一个wordpress网站,我在包含文本区域的管理区域仪表板上创建一个框,现在我想要我的textarea工具ckeditor,有人知道怎么做吗?

here's my code snippet at themes functions.php 这是主题functions.php上的我的代码段

    function tresquint_news_dashboard_widget(){
     if ( $_POST['tresquint_submit_news'] ){
      $options = $_POST['tresquint_news'];
      $options['time'] = time();
      update_option('tresquint_news', $options );
      echo '<div class="updated fade"><p>Updated news.</p></div>';
     }
     $options = get_option("tresquint_news");
     ?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<p><?php _e("Enter a short news"); ?></p>
<p><label for="tresquint_news_text"><?php _e('News'); ?></label><textarea id="tresquint_news_text" style="width: 100%; margin-top: 5px;" name="tresquint_news[text]"><?php echo $options['text']; ?></textarea></p>
<p class="submit"><input style="float: right;" type="submit" name="tresquint_submit_news" value="<?php _e('Publish'); ?>" /><div class='clear'></div></p></form><?php
    }

if you see on ,my code snippet above there's a text area, and i want to change that text area into ckeditor UI. 如果您看到,我的代码段上方有一个文本区域,我想将该文本区域更改为ckeditor UI。

Thanks in advance AnD 在此先感谢您

you can use the Plugin CKEditor For WordPress . 您可以使用WordPress插件CKEditor

I know wordpress only a little, but you can go with the ckeditor help , too: 我只知道wordpress一点,但是您也可以在ckeditor帮助下进行

<textarea id="editor1" name="editor1"><p>Initial value.</p></textarea>
<script type="text/javascript">
    CKEDITOR.replace( 'editor1' );
</script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM