Categories
WordPress

WordPress: ចង់ប្រើ Rich Text Editor របស់ WP នៅក្នុង Theme ឬ Plugin

ខ្ញុំចង់ប្រើ Text Editor របស់ WP ខ្ញុំប្រើ WP latest តើត្រូវសរសេរកូដយ៉ាងម៉េចបានអាចប្រើវាបាន?

2 replies on “WordPress: ចង់ប្រើ Rich Text Editor របស់ WP នៅក្នុង Theme ឬ Plugin”

នៅ​ version 3.3 ឡើង WP កាន់តែងាយស្រួលសំរាប់សរសេរ Plugin / Theme ដើម្បីអាចប្រើ Text Editor បាន WordPress មាន Method:

wp_editor($content, $editor_id, $settings = array());

  • $content: content ដំបូងដែលចង់បង្ហាញ វាមិនចាំបាច់ក៏បាន
  • $editor_id:
  • $settings:

ឧ.

<?php
$args = array("textarea_rows" => 5, "textarea_name" => "newpost_content", "editor_class" => "my_editor_custom input");
wp_editor("My editor content", "newpost_content", $args);
?>




Ref:
http://codex.wordpress.org/Function_Reference/wp_editor
http://wordpress.stackexchange.com/questions/39594/wp-editor-textarea-value-not-updating

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.