0 ) ? $post->post_content : '';
if ( is_admin() ) { // Fix for Gutenberg
$editor = 'textarea';
}
if( 'textarea' == $editor ) {
printf( '', 'description', $post_content );
} else {
wp_editor(
$post_content,
'description',
array(
'media_buttons' => false,
'quicktags' => true,
'editor_height' => 200
)
);
}
?>