• Hi Guys

    I have added excerpt functionality on post bulk quick edit screen. And now I want to use wp_editor for excerpt on bulk quick edit screen instead of textarea. Somehow I am not able to do so or I don’t know what mistake I am doing so its not working and showing blank screen if Visual tab is selected from wp_editor(). Can please someone help me and let me know how can I fix this issue to make it work wp_editor(). Basically visual editor does not load on quick edit screen and just show blank white screen.

    $result = wp_editor(
                stripslashes( self::unescape_string( $post->$column_name ) ),
            	$field_name,
                array (
    	            'textarea_rows' => 25,
    	            'media_buttons' => FALSE,
    	            'teeny'         => TRUE,
    	            'tinymce'       => TRUE,
    	            'wpautop'		=> TRUE,
                )
            );

  • The topic ‘wp_editor() function not working on post quick edit screen’ is closed to new replies.