Advertisement
Guest User

Redactor style

a guest
Sep 12th, 2013
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. //Redactor style
  2. add_editor_style( 'editor-style-custom.css' );
  3.  
  4.     add_filter( 'default_content', 'custom_editor_content' );
  5.     function custom_editor_content( $content ) {
  6. global $current_screen;
  7. if ( $current_screen->post_type == 'event'):
  8.         $content = '
  9. <div class="content-image"></div>
  10.        ';
  11.         return $content;
  12.   endif;  
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement