'edit', 'callback' => function($screen){ if(post_type_supports($screen->post_type, 'excerpt')){ if(!wp_doing_ajax()){ wpjam_script(<<<'JS' $('body').on('quick_edit', '#the-list', function(event, id){ let $edit = $('#edit-'+id); if($('textarea[name="the_excerpt"]', $edit).length == 0){ $('.inline-edit-date', $edit).before(''); $('textarea[name="the_excerpt"]', $edit).val($('#inline_'+id+' div.post_excerpt').text()); } }); JS); } isset($_POST['the_excerpt']) && wpjam_hook('wp_insert_post_data', '+', ['post_excerpt'=>$_POST['the_excerpt']]); wpjam_hook('add_inline_data', 'echo', fn($post)=> '
'.esc_textarea(trim($post->post_excerpt)).'
'); } } ]);