wordpress ckeditor yüklemek nasıl

0 Cevap php

Ben bir wordpress sitesi var ve ben bir metin alanını içeren admin alanı pano bir kutu oluşturmak, ve şimdi benim textarea ckeditor uygulamak istiyoruz, herkes bunu bilir ki?

Burada temalar benim kod parçacığı var 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
    }

Eğer üzerinde görürseniz, benim kod pasajı üzerinde bir metin alanı var ve ben ckeditor UI içine metin alanını değiştirmek istiyorum.

Thanks in advance AnD

0 Cevap