Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function wpdocs_remove_post_type_support() {
  2. remove_post_type_support( 'post', 'editor' );
  3. }
  4.  
  5. add_action('init' ,'wpdocs_remove_post_type_support' );
  6.  
  7.  
  8.  
  9. function myprefix_edit_form_advanced() {
  10.  
  11.  
  12. require('texteditor.html');
  13.  
  14.  
  15. }
  16.  
  17.  
  18. add_action( 'edit_form_after_title', 'myprefix_edit_form_advanced' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement