Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. $post_id = get_the_ID();
  3. $post = get_post( $post_id, OBJECT, 'edit' );
  4.  
  5. $content = $post->post_content;
  6. $editor_id = 'editpost';
  7.  
  8. $editor_args = array(
  9. 'media_buttons' => false,
  10. 'editor_class' => my_editor,
  11. 'textarea_rows' => 10,
  12. 'wpautop' => false,
  13. 'tinymce' => array(
  14. 'content_css' => get_stylesheet_directory_uri() . '/custom/editor-style_single.css'
  15. )
  16. );
  17.  
  18. ?>
  19. <div id="inline_editor">
  20. <?php wp_editor( $content, $editor_id, $editor_args ); ?>
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement