Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Add filter wp editor agrs to custom */
- $wp_editor_args = array(
- 'textarea_name' => 'content',
- 'drag_drop_upload' => false,
- 'media_buttons' => get_theme_mod( 'jnews_frontend_submit_enable_add_media', true ),
- 'textarea_rows' => 25,
- 'teeny' => true,
- 'quicktags' => false,
- );
- wp_editor(
- isset( $post_data['content'] ) ? $post_data['content'] : '',
- 'content',
- apply_filters( 'jnews_frontend_submit_wp_editor_args', $wp_editor_args )
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement