WordPress editor issues

I don’t think clearing cache will solve the problem for your users, because it’s not the server cache but their browsers cache. Ask them to use Ctrl + F5 and it will help to access non-cached version of your website.

WP_editor problem

It doesn’t look like you’re calling add_action() correctly. It should be more like: add_action( ‘edit_page_form’, ‘wpse96952_editor’ ); function wpse96952_editor() { wp_editor( “Sample”, ‘mycontent’, array( ‘textarea_name’ => ‘mycontent’ ) ); } (content changed to mycontent after I read @vancoder’s comment)

How Can i print the wp_editor field content?

OK, since you save these additional values as Custom Fields (see your code below): function save_points(){ global $post; update_post_meta($post->ID, “category”, $_POST[“category”]); update_post_meta($post->ID, “brand”, $_POST[“brand”]); update_post_meta($post->ID, “features”, $_POST[“features”]); update_post_meta($post->ID, “holds”, $_POST[“holds”]); update_post_meta($post->ID, “extra”, $_POST[“extra”]); } You should use [get_post_meta][1] to get these values.

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)