Advertisement
arie_cristianD

change frontend submit editor

Mar 4th, 2025
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. add_filter( 'jnews_frontend_submit_wp_editor_args', 'change_frontend_editor', 99 );
  2.  
  3.  
  4. function change_frontend_editor( $args ) {
  5.     $args['teeny']   = false;
  6.     $args['tinymce'] = array(
  7.         'toolbar1' => 'formatselect,bold,italic,underline,bullist,numlist,blockquote,alignleft,aligncenter,alignright,link,unlink,undo,redo,removeformat,fullscreen',
  8.     );
  9.     return $args;
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement